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 = () => {
125
125
const examClashFilters = Semesters . map ( ( semester ) : FilterItem | null => {
126
126
const timetable = getSemesterTimetable ( semester ) ;
127
127
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
129
129
const examTimings = modules . reduce < ExamTiming [ ] > ( ( result : ExamTiming [ ] , mod : Module ) => {
130
130
const data = getModuleSemesterData ( mod , semester ) ;
131
131
if ( data ?. examDate && data ?. examDuration ) {
132
132
result . push ( {
133
133
start : data . examDate ,
134
134
duration : data . examDuration ,
135
- } )
135
+ } ) ;
136
136
}
137
137
return result ;
138
138
} , [ ] ) ;
You can’t perform that action at this time.
0 commit comments