We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bdbeb5 commit 6d2f70aCopy full SHA for 6d2f70a
apple/InlineMac/Views/Main/MainView.swift
@@ -38,12 +38,14 @@ struct MainView: View {
38
Log.shared.info("MainView appeared • fetching root data")
39
self.rootData.fetch()
40
self.setUpSidebarAutoCollapse()
41
+
42
+ Task {
43
+ // Set online
44
+ try? await dataManager.updateStatus(online: true)
45
+ }
46
}
47
.task {
48
await requestNotifications()
-
- // Set online
- try? await dataManager.updateStatus(online: true)
49
50
// Disable auto collapse while user is modifying it to avoid jump
51
.onChange(of: window.columnVisibility) { _ in
0 commit comments