You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had this problem on the iOS app last week. The "Confirm Amount" button is not active, despite me trying to send less than my balance. I am guessing that the reason is the use of comma vs period in the two amounts shown. The input amount uses commas for the decimal separator (all I can enter via the keypad), and the balance uses periods. If I enter just 822, it works fine and "Confirm Amount" becomes active. But fractional values fail, probably because it reads 821,69 as 82169, which is more than 1357.28. Hope that makes sense.
If that is indeed the problem, one fix could be to fix the validation code to interpret both numbers with the same format. Also not sure why the two numbers use different formatting.
Anyhow, keep up the great work on the app.
The text was updated successfully, but these errors were encountered:
I had this problem on the iOS app last week. The "Confirm Amount" button is not active, despite me trying to send less than my balance. I am guessing that the reason is the use of comma vs period in the two amounts shown. The input amount uses commas for the decimal separator (all I can enter via the keypad), and the balance uses periods. If I enter just
822
, it works fine and "Confirm Amount" becomes active. But fractional values fail, probably because it reads821,69
as82169
, which is more than1357.28
. Hope that makes sense.If that is indeed the problem, one fix could be to fix the validation code to interpret both numbers with the same format. Also not sure why the two numbers use different formatting.
Anyhow, keep up the great work on the app.
The text was updated successfully, but these errors were encountered: