diff options
Diffstat (limited to 'octosentry/octosentryApp.swift')
| -rw-r--r-- | octosentry/octosentryApp.swift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/octosentry/octosentryApp.swift b/octosentry/octosentryApp.swift index 4d5a859..cf7522d 100644 --- a/octosentry/octosentryApp.swift +++ b/octosentry/octosentryApp.swift @@ -10,10 +10,11 @@ import SwiftUI @main struct octosentryApp: App { @State private var store = SecurityEventStore() + @State private var authStore = AuthStore() var body: some Scene { MenuBarExtra("OctoSentry", systemImage: "shield.lefthalf.filled") { - SecurityEventListView(store: store) + SecurityEventListView(store: store, authStore: authStore) } .menuBarExtraStyle(.window) } |
