Fixed BIC length

This commit is contained in:
dankito 2024-09-06 00:44:20 +02:00
parent 84370e71e9
commit ac308700c0
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ fun TransferMoneyDialog(
Text(recipientSuggestion.name)
Row(Modifier.padding(top = 6.dp), verticalAlignment = Alignment.CenterVertically) {
Text(recipientSuggestion.bankIdentifier ?: "", Modifier.width(105.dp))
Text(recipientSuggestion.bankIdentifier ?: "", Modifier.width(110.dp))
recipientSuggestion.bankInfo?.let { bank ->
Text("${bank.name}, ${bank.city}", maxLines = 1, overflow = TextOverflow.Ellipsis)