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);