dropped amount sign from CurrencyField.tsx

This commit is contained in:
2026-08-18 19:15:55 +05:30
parent 62dd06c226
commit 806bd42673

View File

@@ -15,7 +15,7 @@ export function formatCurrency(amount: number, currency?: string): string {
}); });
_currencyFormatters.set(code, formatter); _currencyFormatters.set(code, formatter);
} }
return formatter.format(amount); return formatter.format(Math.abs(amount));
} }
interface CurrencyFieldProps { interface CurrencyFieldProps {