fix formatting

This commit is contained in:
Gregor Vostrak
2026-05-11 17:18:57 +02:00
parent b5639e4bb2
commit 50d60393bc
6 changed files with 10 additions and 15 deletions

View File

@@ -88,7 +88,6 @@ export function findFreeWindowOnDay(
// Sort + merge so we can walk a clean [gap, obstacle, gap, ...] sequence.
obstacles.sort((a, b) => a.start.diff(b.start));
// merge overlaps
const merged: Interval[] = [];
for (const obs of obstacles) {