feat: support for prompt=login in oidc flow

This commit is contained in:
Stavros
2026-06-19 12:45:07 +03:00
parent 6ccc894570
commit dbc9b1eb5c
6 changed files with 30 additions and 10 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ export const AuthorizePage = () => {
);
}
if (!auth.authenticated) {
if (!auth.authenticated || screenParams.oidc_login) {
return <Navigate to={`/login${compiledParams}`} replace />;
}