From 41e6d77d026d2e13342febe8ac5b4c9828af1c56 Mon Sep 17 00:00:00 2001 From: knownotunknown <78577376+knownotunknown@users.noreply.github.com> Date: Mon, 19 Feb 2024 18:34:42 -0600 Subject: [PATCH] Fixed import error --- src/stories/components/CalendarGrid.stories.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stories/components/CalendarGrid.stories.tsx b/src/stories/components/CalendarGrid.stories.tsx index de7e17f8..761c4dbc 100644 --- a/src/stories/components/CalendarGrid.stories.tsx +++ b/src/stories/components/CalendarGrid.stories.tsx @@ -1,5 +1,5 @@ import { Meta, StoryObj } from '@storybook/react'; -import CalendarGrid from '@views/components/common/CalendarGrid/CalendarGrid'; +import CalendarGrid from 'src/views/components/calendar/CalendarGrid/CalendarGrid'; import { getCourseColors } from '@shared/util/colors'; import { CalendarGridCourse } from '@views/hooks/useFlattenedCourseSchedule'; import { Status } from '@shared/types/Course';