From f04ff2fe262dfc944ad9e86381e34882db165b73 Mon Sep 17 00:00:00 2001 From: Razboy20 Date: Sat, 17 Feb 2024 13:32:06 -0600 Subject: [PATCH] chore: update course block names --- .../common/CalendarCourseCell/CalendarCourseCell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/components/common/CalendarCourseCell/CalendarCourseCell.tsx b/src/views/components/common/CalendarCourseCell/CalendarCourseCell.tsx index 819d8142..e78d2616 100644 --- a/src/views/components/common/CalendarCourseCell/CalendarCourseCell.tsx +++ b/src/views/components/common/CalendarCourseCell/CalendarCourseCell.tsx @@ -8,7 +8,7 @@ import WaitlistIcon from '~icons/material-symbols/timelapse'; import CancelledIcon from '~icons/material-symbols/warning'; import Text from '../Text/Text'; -export interface CalendarCourseCellProps { +export interface CalendarCourseBlockProps { /** The Course that the meeting is for. */ course: Course; /* index into course meeting array to display */ @@ -79,4 +79,4 @@ const CalendarCourseCell: React.FC = ({ course, meeting ); }; -export default CalendarCourseCell; +export default CalendarCourseBlock;