From 15b0f032cd790ac95bdbe279dedf784b8a58a047 Mon Sep 17 00:00:00 2001 From: Alexis Rico Date: Mon, 21 Jul 2025 22:46:18 +0200 Subject: [PATCH] Fallback to display text consent scopes (#40789) Closes #40788 Signed-off-by: Alexis Rico --- js/apps/account-ui/src/applications/Applications.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/apps/account-ui/src/applications/Applications.tsx b/js/apps/account-ui/src/applications/Applications.tsx index a97e9ffe746..1bea5643a5e 100644 --- a/js/apps/account-ui/src/applications/Applications.tsx +++ b/js/apps/account-ui/src/applications/Applications.tsx @@ -216,7 +216,8 @@ export const Applications = () => { {application.consent.grantedScopes.map((scope) => ( - {t(scope.name as TFuncKey)} + {" "} + {t(scope.name as TFuncKey, scope.displayText)} ))}