Fix HMR again

This commit is contained in:
naturecodevoid
2023-02-17 18:20:56 -08:00
parent 40f4c94f4d
commit 3605ca6422
2 changed files with 6 additions and 2 deletions

View File

@@ -8,8 +8,11 @@
import SwiftUI
import SFSafeSymbols
import Inject
struct RootView: View {
@ObservedObject private var iO = Inject.observer
@State var selectedTab: Tab = .defaultTab
var body: some View {
@@ -26,6 +29,7 @@ struct RootView: View {
}
}
.overlay(self.notificationsOverlay)
.enableInjection()
}
@ViewBuilder