Skip to content

Commit

Permalink
Merge pull request #184 from uclaacm/feat/summer-events
Browse files Browse the repository at this point in the history
support summer events with `'u'` prefix
  • Loading branch information
r2dev2 authored Jun 19, 2024
2 parents 357ed05 + a11c93e commit 985da8e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions data/archive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ const archive: QuarterArchive[] = [...quarters.entries()].map(([quarterId, quart
case "f": season = "Fall"; break;
case "w": season = "Winter"; break;
case "s": season = "Spring"; break;
case "u": season = "Summer"; break;
default: throw `invalid season char '${quarterId.charAt(0)}' (this should never happen)`
}
return {
Expand Down

0 comments on commit 985da8e

Please sign in to comment.