mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-27 13:13:43 +00:00
Strip spaces from IBAN values before attempting to validate and transform them.
This commit is contained in:
committed by
Greyson Parrelli
parent
3237072c40
commit
48cac37914
@@ -243,7 +243,9 @@ private fun BankTransferDetailsContent(
|
||||
item {
|
||||
TextField(
|
||||
value = state.iban,
|
||||
onValueChange = onIBANChanged,
|
||||
onValueChange = { value ->
|
||||
onIBANChanged(value.replace(" ", ""))
|
||||
},
|
||||
label = {
|
||||
Text(text = stringResource(id = R.string.BankTransferDetailsFragment__iban))
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user