Skip to content

Commit

Permalink
Rename composeVC let
Browse files Browse the repository at this point in the history
  • Loading branch information
hartlco committed Dec 15, 2021
1 parent 47df07f commit 76699ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Icro/Navigator/ItemNavigator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ final class ItemNavigator: ItemNavigatorProtocol {
let navController = UINavigationController()
let viewModel = ComposeViewModel(mode: .reply(item: item))
let navigator = ComposeNavigator(navigationController: navController, viewModel: viewModel)
let extractedExpr = ComposeViewController(viewModel: viewModel,
let composeViewController = ComposeViewController(viewModel: viewModel,
composeNavigator: navigator,
itemNavigator: self)
let viewController = extractedExpr
let viewController = composeViewController
navController.viewControllers = [viewController]
navigationController.present(navController, animated: true, completion: nil)
}
Expand Down

0 comments on commit 76699ec

Please sign in to comment.