mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-26 10:11:00 +00:00
Fix account order (#1171)
This commit is contained in:
parent
07231d0e14
commit
e3ab57ea1c
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ public struct AppAccountsSelectorView: View {
|
|||
|
||||
@ViewBuilder
|
||||
private var menuView: some View {
|
||||
ForEach(accountsViewModel, id: \.appAccount.id) { viewModel in
|
||||
ForEach(accountsViewModel.sorted { $0.acct < $1.acct }, id: \.appAccount.id) { viewModel in
|
||||
Section(viewModel.acct) {
|
||||
Button {
|
||||
if let account = currentAccount.account,
|
||||
|
|
Loading…
Reference in a new issue