From d424ccce49ba05305b24cb61aeb4ffeada5bab33 Mon Sep 17 00:00:00 2001 From: Derek Chen Date: Sat, 28 Sep 2024 23:05:52 -0500 Subject: [PATCH] feat: temporary removal of waitlist etc (#236) --- .../components/calendar/CalendarCourseCell.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/views/components/calendar/CalendarCourseCell.tsx b/src/views/components/calendar/CalendarCourseCell.tsx index 807df9b4..d038f233 100644 --- a/src/views/components/calendar/CalendarCourseCell.tsx +++ b/src/views/components/calendar/CalendarCourseCell.tsx @@ -43,13 +43,13 @@ export default function CalendarCourseCell({ onClick, }: CalendarCourseCellProps): JSX.Element { let rightIcon: React.ReactNode | null = null; - if (status === Status.WAITLISTED) { - rightIcon = ; - } else if (status === Status.CLOSED) { - rightIcon = ; - } else if (status === Status.CANCELLED) { - rightIcon = ; - } + // if (status === Status.WAITLISTED) { + // rightIcon = ; + // } else if (status === Status.CLOSED) { + // rightIcon = ; + // } else if (status === Status.CANCELLED) { + // rightIcon = ; + // } // text-white or text-black based on secondaryColor const fontColor = pickFontColor(colors.primaryColor);