fix: balance unit sync

This commit is contained in:
skynono
2025-06-09 01:16:35 +08:00
parent e1039c67f7
commit d30ae8204e
2 changed files with 4 additions and 4 deletions

View File

@@ -764,7 +764,7 @@ export function renderQuotaWithAmount(amount) {
if (displayInCurrency) {
return '$' + amount;
} else {
return renderUnitWithQuota(amount);
return renderNumber(renderUnitWithQuota(amount));
}
}