Skip to content

Commit

Permalink
[FIX]: VideoListViewController의 버튼에 연결되는 ViewController 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
around-forest committed Nov 28, 2024
1 parent 7181f82 commit ef69768
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Feature/Feature/VideoListView/VideoListViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,10 @@ private extension VideoListViewController {
}

func navigateToEditor() {
let tempViewController = TempViewController(nibName: nil, bundle: nil)
navigationController?.pushViewController(tempViewController, animated: true)
let sharedVideoEditViewController = SharedVideoEditViewController(
viewModel: DIContainer.shared.resolve(type: SharedVideoEditViewModel.self)
)
navigationController?.pushViewController(sharedVideoEditViewController, animated: true)
}
}

Expand Down

0 comments on commit ef69768

Please sign in to comment.