From 316c69d8961caff1c02f695ecc083c8940b75ee6 Mon Sep 17 00:00:00 2001 From: Choyoungjun Date: Thu, 16 May 2024 08:53:31 +0900 Subject: [PATCH] =?UTF-8?q?REFACT=20::=20[#326]=20SceneDelegate=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Demo/Sources/Application/SceneDelegate.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/Features/SelfCareFeature/Demo/Sources/Application/SceneDelegate.swift b/Projects/Features/SelfCareFeature/Demo/Sources/Application/SceneDelegate.swift index 74362303..f182e3d6 100644 --- a/Projects/Features/SelfCareFeature/Demo/Sources/Application/SceneDelegate.swift +++ b/Projects/Features/SelfCareFeature/Demo/Sources/Application/SceneDelegate.swift @@ -18,8 +18,8 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { window = UIWindow(windowScene: windowScene) let useCase = DefaultSelfCareUseCase(repository: SelfCareRepository(networkService: SelfCareService())) - let viewModel = SelfCareMyRoutineEditViewModel(useCase: useCase) - let viewController = SelfCareMyRoutineEditViewController(viewModel) + let viewModel = SelfCareMyRoutineViewModel(useCase: useCase) + let viewController = SelfCareMyRoutineViewController(viewModel) window?.configure(withRootViewController: viewController) window?.makeKeyAndVisible() }