File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
website/src/views/modules Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,14 +125,14 @@ const ModuleFinderSidebar: React.FC = () => {
125125 const examClashFilters = Semesters . map ( ( semester ) : FilterItem | null => {
126126 const timetable = getSemesterTimetable ( semester ) ;
127127 const modules = getSemesterModules ( timetable , allModules ) ;
128- // Filter for modules with non-empty exam timings, and map them to new ExamTiming objects
128+ // Filter for modules with non-empty exam timings, and map them to new ExamTiming objects
129129 const examTimings = modules . reduce < ExamTiming [ ] > ( ( result : ExamTiming [ ] , mod : Module ) => {
130130 const data = getModuleSemesterData ( mod , semester ) ;
131131 if ( data ?. examDate && data ?. examDuration ) {
132132 result . push ( {
133133 start : data . examDate ,
134134 duration : data . examDuration ,
135- } )
135+ } ) ;
136136 }
137137 return result ;
138138 } , [ ] ) ;
You can’t perform that action at this time.
0 commit comments