Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 15bc342

Browse files
committed
fix: remove invalid assert
1 parent e74b83b commit 15bc342

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

apps/ui/modules/reservable.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,6 @@ export function generateReservableMap(
103103
})
104104
.filter((n): n is NonNullable<typeof n> => n != null);
105105

106-
// eslint-disable-next-line no-console -- should enforce that input type is never null instead
107-
console.assert(converted.length === reservableTimeSpans.length);
108-
109106
const map = new Map<string, Array<{ start: Date; end: Date }>>();
110107
for (const n of converted) {
111108
if (!isSameDay(n.start, n.end)) {

0 commit comments

Comments
 (0)