diff --git a/Projects/App/Sources/Application/AppComponent.swift b/Projects/App/Sources/Application/AppComponent.swift index 61e046837..676e6a772 100644 --- a/Projects/App/Sources/Application/AppComponent.swift +++ b/Projects/App/Sources/Application/AppComponent.swift @@ -8,12 +8,7 @@ import RootFeature import StorageFeature import UIKit -@MainActor public final class AppComponent: BootstrapComponent { - public func makeRootView() -> IntroViewController { - rootComponent.makeView() - } - public var keychain: any Keychain { shared { KeychainImpl() diff --git a/Projects/App/Sources/Application/SceneDelegate.swift b/Projects/App/Sources/Application/SceneDelegate.swift index 42cc4a2b5..6722e8805 100644 --- a/Projects/App/Sources/Application/SceneDelegate.swift +++ b/Projects/App/Sources/Application/SceneDelegate.swift @@ -19,7 +19,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { self.window = UIWindow(windowScene: scene) registerProviderFactories() self.root = AppComponent() - self.window?.rootViewController = root?.makeRootView().wrapNavigationController + self.window?.rootViewController = root?.rootComponent.makeView().wrapNavigationController self.window?.makeKeyAndVisible() // Handling App Entry:: Not Running State