fix formatting

This commit is contained in:
Gregor Vostrak
2026-05-11 17:18:57 +02:00
parent 6d93e48b1d
commit 72cd0b6f05
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) {

View File

@@ -19,7 +19,6 @@ import {
type FreeWindow,
} from './cellMath';
/**
* Cell-level edit dispatcher. Picks one of four strategies based on
* the diff between current and requested totals:
@@ -317,6 +316,5 @@ export function useTimesheetCellMutations(
return best;
}
return { handleCellUpdate };
}