From b9aab1d0fde197e55403f27f3b8beef1806d23bb Mon Sep 17 00:00:00 2001 From: Jay Sheen Date: Fri, 31 Oct 2025 13:14:35 +0900 Subject: [PATCH] Add thousand separator formatting to deposit balance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use Intl.NumberFormat('en-US').format() to add commas for thousand separators in the deposit balance display (50,000,000 instead of 50000000). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/pages/additional-service/payout/list-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/additional-service/payout/list-page.tsx b/src/pages/additional-service/payout/list-page.tsx index 8d94c5f..f48b6ef 100644 --- a/src/pages/additional-service/payout/list-page.tsx +++ b/src/pages/additional-service/payout/list-page.tsx @@ -269,7 +269,7 @@ export const PayoutListPage = () => {
{t('additionalService.payout.depositBalance')} - {t('home.money', { value: 50000000 })} + {t('home.money', { value: new Intl.NumberFormat('en-US').format(50000000) })}