Replace lazy AppStorage calls with AccountManager

This commit is contained in:
2025-04-25 14:26:05 +02:00
parent d3143915ea
commit 351f08e43e
16 changed files with 392 additions and 270 deletions
+3 -3
View File
@@ -9,11 +9,11 @@ import SwiftUI
@main
struct meteriosWatchApp: App {
private var wcMgr = WCManager()
@StateObject var wcMgr = WCManager()
var body: some Scene {
WindowGroup {
ContentView(wcMgr)
ContentView().environmentObject(wcMgr)
}
}
}