From bc935cc80af22e4085d1bf0b0576d3d3bfe4b919 Mon Sep 17 00:00:00 2001 From: Abhinav Chadaga Date: Sat, 17 Feb 2024 14:31:34 -0600 Subject: [PATCH] chore: update CalendarCourseCell.tsx --- .../common/CalendarCourseCell/CalendarCourseCell.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/components/common/CalendarCourseCell/CalendarCourseCell.tsx b/src/views/components/common/CalendarCourseCell/CalendarCourseCell.tsx index 3506d6a0..e7b389f6 100644 --- a/src/views/components/common/CalendarCourseCell/CalendarCourseCell.tsx +++ b/src/views/components/common/CalendarCourseCell/CalendarCourseCell.tsx @@ -6,10 +6,10 @@ import WaitlistIcon from '~icons/material-symbols/timelapse'; import CancelledIcon from '~icons/material-symbols/warning'; import Text from '../Text/Text'; - /** The Course that the meeting is for. */ - course: Course; - /* index into course meeting array to display */ - meetingIdx?: number; +export interface CalendarCourseCellProps { + courseDeptAndInstr: string; + timeAndLocation?: string; + status: Status; colors: CourseColors; }