💄 Optimized leveling page

This commit is contained in:
2025-07-02 22:17:25 +08:00
parent 53c2445ba9
commit 9fc9b87608
4 changed files with 78 additions and 86 deletions

View File

@ -286,7 +286,7 @@ class _PaymentContentState extends ConsumerState<_PaymentContent> {
}
String _formatCurrency(int amount, String currency) {
final value = amount / 100.0;
final value = amount;
return '${value.toStringAsFixed(2)} $currency';
}