Remove bind of project month in resident calendar options

This commit is contained in:
2026-01-13 21:02:25 +02:00
parent 92a9c6d704
commit db7623528c
4 changed files with 10 additions and 15 deletions

View File

@@ -9,18 +9,6 @@
import { rota, steps } from "./state.svelte.js";
import Generate from "./components/schedule/generate.svelte";
$inspect(rota.selectedMonth).with((type, value) => {
trace(`[Month: ${type}]: ${value}`);
});
$inspect(rota.selectedYear).with((type, value) => {
trace(`[Year: ${type}]: ${value}`);
});
$inspect(rota.holidays).with((type, value) => {
const readableHolidays = JSON.stringify($state.snapshot(value));
trace(`[Holidays: ${type}]: ${readableHolidays}`);
});
</script>
<main