Skip to content

Commit

Permalink
Merge branch 'fix/multiple-instructor-name-view' of https://github.co…
Browse files Browse the repository at this point in the history
…m/adityamkk/UT-Registration-Plus into fix/multiple-instructor-name-view
  • Loading branch information
adityamkk committed Oct 29, 2024
2 parents 12eec5b + fe95bf5 commit 972429f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/hooks/useFlattenedCourseSchedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function extractCourseInfo(course: Course) {
if (course.instructors.length >= 0) {
courseDeptAndInstr += ` - `;
courseDeptAndInstr += course.instructors
.map(instructor => `${instructor.toString({ format: 'last', case: 'capitalize' })}`)
.map(instructor => instructor.toString({ format: 'last', case: 'capitalize' }))
.join(', ');
}

Expand Down

0 comments on commit 972429f

Please sign in to comment.