@@ -12,21 +12,18 @@ extension BlogDetailsViewController {
1212 guard self ? . blog. managedObjectContext != nil else {
1313 return
1414 }
15- self ? . toggleSpotlightForSiteTitle ( )
16- self ? . refreshSiteIcon ( )
1715 self ? . configureTableViewData ( )
1816 self ? . reloadTableViewPreservingSelection ( )
1917
2018 if let info = notification. userInfo ? [ QuickStartTourGuide . notificationElementKey] as? QuickStartTourElement {
2119 switch info {
2220 case . noSuchElement:
23- if FeatureFlag . mySiteDashboard. enabled,
24- let parentVC = self ? . parent as? MySiteViewController {
25- parentVC. additionalSafeAreaInsets = . zero
26- } else {
27- self ? . additionalSafeAreaInsets = . zero
21+ guard let parentVC = self ? . parent as? MySiteViewController else {
22+ return
2823 }
2924
25+ parentVC. additionalSafeAreaInsets = . zero
26+
3027 case . siteIcon, . siteTitle:
3128 // handles the padding in case the element is not in the table view
3229 self ? . additionalSafeAreaInsets = UIEdgeInsets ( top: 0 , left: 0 , bottom: BlogDetailsViewController . bottomPaddingForQuickStartNotices, right: 0 )
@@ -115,9 +112,7 @@ extension BlogDetailsViewController {
115112 private func showQuickStart( with type: QuickStartType ) {
116113 let checklist = QuickStartChecklistViewController ( blog: blog, type: type)
117114 let navigationViewController = UINavigationController ( rootViewController: checklist)
118- present ( navigationViewController, animated: true ) { [ weak self] in
119- self ? . toggleSpotlightOnHeaderView ( )
120- }
115+ present ( navigationViewController, animated: true )
121116
122117 QuickStartTourGuide . shared. visited ( . checklist)
123118
0 commit comments