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:
Jay Sheen
2025-10-31 13:12:48 +09:00
parent ad7ddd9214
commit 473f8b0881

View File

@@ -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>