We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e74b83b commit 15bc342Copy full SHA for 15bc342
1 file changed
apps/ui/modules/reservable.ts
@@ -103,9 +103,6 @@ export function generateReservableMap(
103
})
104
.filter((n): n is NonNullable<typeof n> => n != null);
105
106
- // eslint-disable-next-line no-console -- should enforce that input type is never null instead
107
- console.assert(converted.length === reservableTimeSpans.length);
108
-
109
const map = new Map<string, Array<{ start: Date; end: Date }>>();
110
for (const n of converted) {
111
if (!isSameDay(n.start, n.end)) {
0 commit comments