From 80bc49db8d4a083244e3249c1142febfd6e22039 Mon Sep 17 00:00:00 2001 From: derhelge Date: Mon, 2 Jun 2025 13:48:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=99=20a11y:=20Improved=20Readability?= =?UTF-8?q?=20of=20Tokens=20(#7643)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Helge Wiethoff --- client/src/components/Nav/AccountSettings.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/components/Nav/AccountSettings.tsx b/client/src/components/Nav/AccountSettings.tsx index 921d4b0356..fc76e440a0 100644 --- a/client/src/components/Nav/AccountSettings.tsx +++ b/client/src/components/Nav/AccountSettings.tsx @@ -78,7 +78,8 @@ function AccountSettings() { {startupConfig?.balance?.enabled === true && balanceQuery.data != null && ( <>
- {localize('com_nav_balance')}: {balanceQuery.data.tokenCredits.toFixed(2)} + {localize('com_nav_balance')}:{' '} + {new Intl.NumberFormat().format(Math.round(balanceQuery.data.tokenCredits))}