From b1b23988fc687f4a3f25ae49c43f237ac7096ee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Wed, 29 Jul 2026 09:32:49 +0200 Subject: [PATCH] Show locale code in guest language select MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Full language names (e.g. Bahasa Indonesia) made the guest top-bar control too wide next to Get access. Signed-off-by: Émile Ré --- apps/compliance-portal/src/components/TopBar/LocaleSelect.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/compliance-portal/src/components/TopBar/LocaleSelect.tsx b/apps/compliance-portal/src/components/TopBar/LocaleSelect.tsx index 440571fa1..baf07eca3 100644 --- a/apps/compliance-portal/src/components/TopBar/LocaleSelect.tsx +++ b/apps/compliance-portal/src/components/TopBar/LocaleSelect.tsx @@ -76,7 +76,7 @@ export function LocaleSelect({ {(value: UrlLocale | null) => ( - {value ? URL_LOCALE_LABELS[value] : null} + {value ? value.toUpperCase() : null} )}