diff --git a/app/src/main/java/org/mozilla/fenix/home/sessioncontrol/SessionControlView.kt b/app/src/main/java/org/mozilla/fenix/home/sessioncontrol/SessionControlView.kt index 7a8566cd26..7a9aa04593 100644 --- a/app/src/main/java/org/mozilla/fenix/home/sessioncontrol/SessionControlView.kt +++ b/app/src/main/java/org/mozilla/fenix/home/sessioncontrol/SessionControlView.kt @@ -214,14 +214,16 @@ class SessionControlView( super.onLayoutCompleted(state) if (!context.settings().showHomeOnboardingDialog) { - if (context.settings().shouldShowJumpBackInCFR) { - JumpBackInCFRDialog(view).showIfNeeded() - } else if (context.settings().showSyncCFR) { + if (context.settings().showSyncCFR) { SyncCFRPresenter( context = context, recyclerView = view, ).showSyncCFR() } + + if (context.settings().shouldShowJumpBackInCFR) { + JumpBackInCFRDialog(view).showIfNeeded() + } } // We want some parts of the home screen UI to be rendered first if they are