Merge branch 'main' into auth_splitout

This commit is contained in:
Max Goedjen
2026-09-07 19:43:16 -07:00
8 changed files with 180 additions and 6 deletions
@@ -0,0 +1,14 @@
import SwiftUI
import SettingsKit
struct SettingsView: View {
@Environment(\.settingsStore) var settingsStore
var body: some View {
Form {
}
.padding()
.frame(minWidth: 480, minHeight: 320)
}
}