Skip to content

Commit

Permalink
fix/#383 화면전환시 백버튼 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
hooni0918 committed Sep 13, 2024
1 parent 98691c2 commit 9e2ac50
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,10 +240,8 @@ class MyPageViewController: BaseViewController, CustomActionSheetDelegate {
private func navigateToLoginScreen() {
let loginViewModel = LoginViewModel()
let loginViewController = LoginViewController(viewModel: loginViewModel)
let navigationController = UINavigationController(rootViewController: loginViewController)
navigationController.modalPresentationStyle = .fullScreen
self.view.window?.rootViewController = navigationController
self.view.window?.makeKeyAndVisible()
loginViewController.modalPresentationStyle = .fullScreen
self.present(loginViewController, animated: true, completion: nil)
}

func actionButtonDidTap(for kind: ActionSheetKind) {
Expand Down

0 comments on commit 9e2ac50

Please sign in to comment.