[fenix] For https://github.com/mozilla-mobile/fenix/issues/26774 - Attempt to show the Synced Tab CFR before the Jump Back In CFR

pull/600/head
Gabriel Luong 2 years ago committed by mergify[bot]
parent ea07a6dc2b
commit d2f7a63214

@ -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

Loading…
Cancel
Save