diff --git a/iphone/Maps/UI/PlacePage/PlacePageInteractor.swift b/iphone/Maps/UI/PlacePage/PlacePageInteractor.swift index 20b449a365..63dac99b90 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageInteractor.swift +++ b/iphone/Maps/UI/PlacePage/PlacePageInteractor.swift @@ -82,7 +82,10 @@ extension PlacePageInteractor: AddReviewViewControllerDelegate { extension PlacePageInteractor: PlacePageReviewsViewControllerDelegate { func didPressMoreReviews() { - + let moreReviews = viewController!.storyboard!.instantiateViewController(ofType: MoreReviewsViewController.self) + moreReviews.ugcData = placePageData.ugcData + moreReviews.title = placePageData.previewData.title + MapViewController.shared()?.navigationController?.pushViewController(moreReviews, animated: true) } }