Fix currency display format to use t('home.money', { value })
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 <noreply@anthropic.com>
This commit is contained in:
@@ -269,7 +269,7 @@ export const PayoutListPage = () => {
|
||||
<div className="row">
|
||||
<span className="label">{t('additionalService.payout.depositBalance')}</span>
|
||||
<span className="amount22">
|
||||
50,000,000<span className="unit">{t('home.money')}</span>
|
||||
{t('home.money', { value: 50000000 })}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user