From 3e9b31394fe814b4c7f9986d333c4a097ded48c5 Mon Sep 17 00:00:00 2001 From: "Gabriel Mowses (Mouse)" Date: Wed, 1 Apr 2026 20:09:01 -0300 Subject: [PATCH] fix: use /login/{id} route without /redirect suffix --- ux/src/components/AuthLoginPanel.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ux/src/components/AuthLoginPanel.vue b/ux/src/components/AuthLoginPanel.vue index d13ee0f5..8fcbd405 100644 --- a/ux/src/components/AuthLoginPanel.vue +++ b/ux/src/components/AuthLoginPanel.vue @@ -618,7 +618,7 @@ function selectStrategy (str) { state.selectedStrategyId = str.id // If strategy doesn't use a form (e.g. OIDC/OAuth), redirect to provider if (!str.activeStrategy.strategy.useForm) { - window.location.assign(`/login/${str.activeStrategy.id}/redirect`) + window.location.assign(`/login/${str.activeStrategy.id}`) } }