Displaying now bank accounts according to their display index

This commit is contained in:
dankito 2020-09-01 15:13:50 +02:00
parent 3f093889a0
commit b40e865af6
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ struct BankListItem : View {
ForEach(bank.accounts) { account in
ForEach(bank.accountsSorted) { account in
BankAccountListItem(account: account)
}
.padding(.leading, 18)