fix: Back to Login button navigates to /login?local to prevent auto-redirect
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m8s
CI / docker (push) Successful in 59s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 37s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-06 01:31:57 +02:00
parent c628c25081
commit 94bfb8fc4a

View File

@@ -73,7 +73,7 @@ export function OidcCallback() {
{error && (
<>
<Alert variant="error">{error}</Alert>
<Button variant="secondary" onClick={() => navigate('/login')} style={{ marginTop: 16 }}>
<Button variant="secondary" onClick={() => navigate('/login?local')} style={{ marginTop: 16 }}>
Back to Login
</Button>
</>