From a5ddaaab447f123d30a11512c357169ef7ddcac7 Mon Sep 17 00:00:00 2001 From: Bastiaan Date: Sun, 7 Jun 2026 11:39:52 +0200 Subject: [PATCH] fix: disable ssr for index --- src/routes/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/index.tsx b/src/routes/index.tsx index 6e0771d..c0eae83 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -7,6 +7,7 @@ import { Item } from "../components/app.item.tsx"; import { MissedItems } from "../components/app.missed-items.tsx"; export const Route = createFileRoute("/")({ + ssr: false, component: () => { const [selectedDate, setSelectedDate] = createSignal(Temporal.Now.plainDateISO()); const daysUntilToday = () => Temporal.Now.plainDateISO().until(selectedDate()).days; -- 2.51.2