Skip to content

Commit

Permalink
Fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ncovercash committed Sep 22, 2023
1 parent 258a6f2 commit 3b16700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/forms/CalendarForm/validation/validateExceptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function validateExceptionOverlaps(
?.startOf('day') ?? dayjs(0),
endDate: dayjs
.max(row.rows.map(({ endDate }) => dayjs(endDate)))
.endOf('day'),
?.endOf('day') ?? dayjs(0),
}))
.filter(({ i }) => isExceptionFilled(rows[i]));

Expand Down

0 comments on commit 3b16700

Please sign in to comment.