diff --git a/Sources/Secretive/Views/StoreListView.swift b/Sources/Secretive/Views/StoreListView.swift index c2b64e2..e9c28fa 100644 --- a/Sources/Secretive/Views/StoreListView.swift +++ b/Sources/Secretive/Views/StoreListView.swift @@ -25,7 +25,7 @@ struct StoreListView: View { if store.secrets.isEmpty { EmptyStoreView(store: store, activeSecret: $activeSecret) } else { - ForEach(store.secrets) { secret in + ForEach(store.secrets.sorted(by: { $0.name < $1.name })) { secret in SecretListItemView( store: store, secret: secret,