From 224901003e61b5e3412977b9d829adf600a47281 Mon Sep 17 00:00:00 2001 From: ItsukiKigoshi Date: Tue, 21 Nov 2023 17:22:16 +0900 Subject: [PATCH] Update schedule property to allow null values --- components/Timetable/Timetable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Timetable/Timetable.tsx b/components/Timetable/Timetable.tsx index 917f393..df9db47 100644 --- a/components/Timetable/Timetable.tsx +++ b/components/Timetable/Timetable.tsx @@ -21,7 +21,7 @@ interface TimetableItem { section: string | null; e: string; j: string; - schedule: string; + schedule: string | null; room: string | null; comment: string | null; maxnum: string | null;