From 2242a120944fe18aed1937ddc65d68c552495aa6 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Sun, 19 Jul 2026 16:49:50 +0200 Subject: [PATCH] fix: redirect login to /de/fahrzeuge instead of non-existent /dashboard --- frontend/app/(auth)/login/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/(auth)/login/page.tsx b/frontend/app/(auth)/login/page.tsx index 488081d..a177528 100644 --- a/frontend/app/(auth)/login/page.tsx +++ b/frontend/app/(auth)/login/page.tsx @@ -41,7 +41,7 @@ function LoginForm() { const tokens = await apiLogin(email, password); setTokens(tokens); showToast(t('login.success'), 'success'); - router.push('/dashboard'); + router.push('/de/fahrzeuge'); } catch (err) { const message = (err as any)?.error?.message || t('login.error.invalidCredentials'); showToast(message, 'error');