diff --git a/src/views/components/calendar/CalendarCourseCell.tsx b/src/views/components/calendar/CalendarCourseCell.tsx index 7011f21a..d038f233 100644 --- a/src/views/components/calendar/CalendarCourseCell.tsx +++ b/src/views/components/calendar/CalendarCourseCell.tsx @@ -43,16 +43,17 @@ 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); + // Note that overflow-hidden is the duct tape holding this all together return (
diff --git a/src/views/components/calendar/ImportantLinks.tsx b/src/views/components/calendar/ImportantLinks.tsx index b06d309f..7365ec20 100644 --- a/src/views/components/calendar/ImportantLinks.tsx +++ b/src/views/components/calendar/ImportantLinks.tsx @@ -38,6 +38,10 @@ const links: LinkItem[] = [ text: 'Degree Audit', url: 'https://utdirect.utexas.edu/apps/degree/audits/', }, + { + text: 'My Registered Courses', + url: 'https://utdirect.utexas.edu/registration/classlist.WBX', + }, ]; /**