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:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user