From 2e4e05c6d269f3352dc1c27720e09fe9b1f43821 Mon Sep 17 00:00:00 2001 From: "Edward Tirado Jr." Date: Wed, 8 Apr 2026 22:37:38 -0500 Subject: [PATCH] login uses hard redirect to clear errors caused by browser extensions --- app/composables/useAuth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/composables/useAuth.ts b/app/composables/useAuth.ts index a16d40f..55bfbc7 100644 --- a/app/composables/useAuth.ts +++ b/app/composables/useAuth.ts @@ -7,7 +7,7 @@ export const useAuth = () => { credentials: 'include', }) await $api('/api/login', {method: 'POST', body: {email, password}}) - await navigateTo('/lists') + window.location.href = '/lists' } const register = async (email: string, username: string) => {