Skip to content

Commit

Permalink
chore: try to reduce diff
Browse files Browse the repository at this point in the history
  • Loading branch information
ap0nia committed Nov 2, 2023
1 parent d7a8fdb commit c946c91
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/antalmanac/src/components/Header/ImportStudyList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ class ImportStudyList extends PureComponent<ImportStudyListProps, ImportStudyLis
this.setState({ isOpen: true });
};

addCoursesMultiple = (courseInfo: { [sectionCode: string]: CourseInfo }, term: string, scheduleIndex: number) => {
addCoursesMultiple = (
courseInfo: { [sectionCode: string]: CourseInfo },
term: string,
scheduleIndex: number
) => {
for (const section of Object.values(courseInfo)) {
addCourse(section.section, section.courseDetails, term, scheduleIndex, true);
}
Expand Down

0 comments on commit c946c91

Please sign in to comment.