Add thousand separator formatting to deposit balance

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 <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-10-31 13:14:35 +09:00
parent 473f8b0881
commit b9aab1d0fd

View File

@@ -269,7 +269,7 @@ export const PayoutListPage = () => {
<div className="row"> <div className="row">
<span className="label">{t('additionalService.payout.depositBalance')}</span> <span className="label">{t('additionalService.payout.depositBalance')}</span>
<span className="amount22"> <span className="amount22">
{t('home.money', { value: 50000000 })} {t('home.money', { value: new Intl.NumberFormat('en-US').format(50000000) })}
</span> </span>
</div> </div>
</div> </div>