Skip to content

Commit

Permalink
LEMS-515 done
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmeshulam committed Aug 22, 2024
1 parent 4b0bd10 commit 85bfdd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/lib/schedule/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const extractSessionsFromJudgingBlock = (
.set('second', 0);

for (let i = 3; i < roomNames.length + 3; i++) {
const room = rooms.find(table => table.name === roomNames[i - 3]);
const room = rooms.find(room => room.name === roomNames[i - 3]);
const session: JudgingSession = {
divisionId: division._id,
number,
Expand Down

0 comments on commit 85bfdd2

Please sign in to comment.