···412412 const s = new Date(startsAt);
413413 const e = new Date(endsAt);
414414 if (s >= e) {
415415+ // eslint-disable-next-line svelte/prefer-svelte-reactivity -- temporary local, not reactive state
415416 const adjusted = new Date(s);
416417 adjusted.setHours(adjusted.getHours() + 1);
417418 endsAt = isoToDatetimeLocal(adjusted.toISOString());