Skip to content

Commit

Permalink
fix: injection not working from som/elie commit (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas-Zenick authored Mar 11, 2024
1 parent 261d2f2 commit 591687e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/types/CourseSchedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { CourseMeeting, DAY_MAP } from './CourseMeeting';
* This represents the schedule for a course, which includes all the meeting times for the course, as well as helper functions for parsing, serializing, and deserializing the schedule
*/
export class CourseSchedule {
meetings: CourseMeeting[];
meetings: CourseMeeting[] = [];

constructor(courseSchedule?: Serialized<CourseSchedule>) {
if (!courseSchedule) {
Expand Down

0 comments on commit 591687e

Please sign in to comment.