From f79e3f2a108eeb5967e7e6026f90ab669dec8b54 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 30 Nov 2025 22:29:08 -0800 Subject: [PATCH] update auth store redirect to /auth/login --- src/lib/stores/auth.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/stores/auth.store.ts b/src/lib/stores/auth.store.ts index 833a6d7a..dbf95b04 100644 --- a/src/lib/stores/auth.store.ts +++ b/src/lib/stores/auth.store.ts @@ -104,7 +104,7 @@ function createAuthStore() { // Redirect to login on refresh failure if (browser) { - window.location.href = '/login' + window.location.href = '/auth/login' } return false