Skip to content

Commit

Permalink
Bugfix FXIOS-10324 ⁃ Don't display the Menu CFR for new users that ne…
Browse files Browse the repository at this point in the history
…ver saw the old menu (#22627)

FXIOS-10324 #22615 ⁃ Don't display the Menu CFR for new users that never saw the old menu
  • Loading branch information
dicarobinho authored Oct 18, 2024
1 parent dd7910b commit a8ff476
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,11 @@ class MainMenuViewController: UIViewController,
// 2. feature is enabled and
// 3. is not fresh install
if viewProvider.shouldPresentContextualHint() &&
featureFlags.isFeatureEnabled(.menuRefactorHint, checking: .buildOnly) &&
InstallType.get() != .fresh {
featureFlags.isFeatureEnabled(.menuRefactorHint, checking: .buildOnly) {
if InstallType.get() == .fresh {
viewProvider.markContextualHintPresented()
return false
}
return true
}
return false
Expand Down

0 comments on commit a8ff476

Please sign in to comment.