Fix not accepting "," in some currencies

This commit is contained in:
OmarHatem 2025-05-01 16:21:47 +03:00
parent b25cb527cb
commit 0e4c9bb138

View file

@ -250,7 +250,7 @@ abstract class OutputBase with Store {
sendAll = false; sendAll = false;
} }
cryptoAmount = amount; cryptoAmount = amount.replaceAll(',', '.');
_updateFiatAmount(); _updateFiatAmount();
} }