Skip to content

Commit

Permalink
chore: sceneDelegate수정
Browse files Browse the repository at this point in the history
  • Loading branch information
MaraMincho committed Nov 17, 2023
1 parent 8f26a18 commit 7b7783f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion iOS/Projects/App/Sources/Application/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ final class SceneDelegate: UIResponder, UIWindowSceneDelegate {
guard let windowScene = scene as? UIWindowScene else { return }
let navigationController = UINavigationController()
window = UIWindow(windowScene: windowScene)
window?.rootViewController = ExerciseEnvironmentSetupViewController()
window?.rootViewController = navigationController
let coordinator = AppCoordinator(navigationController: navigationController)
coordinator.start()
window?.makeKeyAndVisible()
}
}

0 comments on commit 7b7783f

Please sign in to comment.