From 06a26e976b06084e990b61d83e8c498bb4b286b0 Mon Sep 17 00:00:00 2001 From: Stavros Date: Mon, 2 Mar 2026 15:50:08 +0200 Subject: [PATCH] fix: fix authorize app initial box not being a box --- frontend/src/pages/authorize-page.tsx | 10 +++++----- frontend/src/pages/login-page.tsx | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/frontend/src/pages/authorize-page.tsx b/frontend/src/pages/authorize-page.tsx index f81fd1b..316620e 100644 --- a/frontend/src/pages/authorize-page.tsx +++ b/frontend/src/pages/authorize-page.tsx @@ -155,7 +155,7 @@ export const AuthorizePage = () => {
-
+
{getClientInfo.data?.name.slice(0, 1)}
@@ -170,8 +170,8 @@ export const AuthorizePage = () => {
- - {scopes.includes("openid") && ( + {scopes.includes("openid") && ( +
{scopes.map((id) => { const scope = scopeMap.find((s) => s.id === id); @@ -189,8 +189,8 @@ export const AuthorizePage = () => { ); })}
- )} -
+
+ )} - )} - + + )} ); };