From 6db2dc68daf5a098e1e9936a4ed99c0f44107534 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Fri, 10 Jul 2026 16:33:43 +0200 Subject: [PATCH] Style Signed-off-by: Bryan Frimin --- apps/console/src/pages/iam/auth/ConsentPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/console/src/pages/iam/auth/ConsentPage.tsx b/apps/console/src/pages/iam/auth/ConsentPage.tsx index c711ae651..cb98190ce 100644 --- a/apps/console/src/pages/iam/auth/ConsentPage.tsx +++ b/apps/console/src/pages/iam/auth/ConsentPage.tsx @@ -351,7 +351,7 @@ export default function ConsentPage(props: { variant="secondary" className="flex-1 h-10" disabled={pendingAction !== null} - loading={pendingAction === "deny"} + icon={pendingAction === "deny" ? Spinner : undefined} onClick={() => handleAction(false)} > {__("Deny")} @@ -359,7 +359,7 @@ export default function ConsentPage(props: {