From 473f8b088178aae4c9d5073c89475333fcc4b597 Mon Sep 17 00:00:00 2001 From: Jay Sheen Date: Fri, 31 Oct 2025 13:12:48 +0900 Subject: [PATCH] Fix currency display format to use t('home.money', { value }) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed from separate number and unit to use t('home.money', { value: 50000000 }) for proper currency formatting with interpolation. 🤖 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 cce6e67..8d94c5f 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')} - 50,000,000{t('home.money')} + {t('home.money', { value: 50000000 })}