Fix not accepting "," in some currencies
OmarHatem committed
May 1, 2025 at 16:21 UTC
0e4c9bb1388fc43066f9d3b5b20da52a1b447a77
1 file changed
+1
-1
lib/view_model/send/output.dart
+1
-1
@@ -250,7 +250,7 @@ abstract class OutputBase with Store {
250
sendAll = false;
251
}
252
253
- cryptoAmount = amount;
253
+ cryptoAmount = amount.replaceAll(',', '.');
254
_updateFiatAmount();
255
}
256