Fix account order (#1171)
This commit is contained in:
parent
07231d0e14
commit
e3ab57ea1c
|
@ -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 New Issue