From 1e7bfd44ec0cb99e1f3272b46e5c8a59e121cc89 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Sun, 25 Jan 2026 03:00:40 +0100 Subject: [PATCH] fix(clock): remove auth redirect from dashboard for guest mode Remove the login redirect from the main dashboard page to allow guest users to access the Clock app without authentication. Co-Authored-By: Claude Opus 4.5 --- apps/clock/apps/web/src/routes/(app)/+page.svelte | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/clock/apps/web/src/routes/(app)/+page.svelte b/apps/clock/apps/web/src/routes/(app)/+page.svelte index 4459fe2b9..74d5d5739 100644 --- a/apps/clock/apps/web/src/routes/(app)/+page.svelte +++ b/apps/clock/apps/web/src/routes/(app)/+page.svelte @@ -8,10 +8,7 @@ let isLoading = $state(true); onMount(async () => { - if (!authStore.isAuthenticated) { - goto('/login'); - return; - } + // No auth redirect - guest mode allowed isLoading = false; });