Fixed that a tap on a bank account shows an random bank account but not (necessarily) selected one

This commit is contained in:
dankito 2020-07-24 19:17:43 +02:00
parent d3fa90d529
commit 185e0e0271
1 changed files with 3 additions and 4 deletions

View File

@ -18,10 +18,9 @@ struct BankListItem : View {
}.frame(height: 35)
}
VStack {
ForEach(bank.accounts) { account in
BankAccountListItem(account: account)
}
ForEach(bank.accounts) { account in
BankAccountListItem(account: account)
}
.padding(.leading, 18)
}