From a2cdbc26bd7eb1aad560cbc71a7c578a84eab5f8 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 17 Apr 2026 19:44:08 +0000 Subject: [PATCH] Allow signin with next parameter --- ts/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/router.ts b/ts/router.ts index 191d42a7..c83b9440 100644 --- a/ts/router.ts +++ b/ts/router.ts @@ -203,7 +203,7 @@ export const router = createRouter({ // Global navigation guard router.beforeEach(async (to, from) => { - if (to.fullPath == "/signin" || to.fullPath == "/signup") { + if (to.fullPath.startsWith("/signin") || to.fullPath == "/signup") { return; } const storeSession = useSessionStore();