[ios] fix recently deleted screen opening bug

The VCs should be pushed from the Main Map nav controller

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-09-24 13:43:48 +04:00 committed by Viktor Havaka
parent a570d855f7
commit 015f63cf48

View file

@ -161,7 +161,7 @@ final class BMCViewController: MWMViewController {
private func openRecentlyDeleted() {
let recentlyDeletedController = RecentlyDeletedCategoriesViewController(viewModel: RecentlyDeletedCategoriesViewModel(bookmarksManager: BookmarksManager.shared()))
MapViewController.topViewController().navigationController?.pushViewController(recentlyDeletedController, animated: true)
MapViewController.shared()?.navigationController?.pushViewController(recentlyDeletedController, animated: true)
}
}