Commit 1e6052d9 authored by Jonathan Almeida's avatar Jonathan Almeida Committed by Arturo Mejia
Browse files

Issue #20590: 'Jump back in' should obey feature flags

(cherry picked from commit f8945b37)
parent d3db8f98
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -103,7 +103,6 @@ import org.mozilla.fenix.components.tips.Tip
import org.mozilla.fenix.components.tips.providers.MasterPasswordTipProvider
import org.mozilla.fenix.components.toolbar.FenixTabCounterMenu
import org.mozilla.fenix.components.toolbar.ToolbarPosition
import org.mozilla.fenix.ext.asRecentTabs
import org.mozilla.fenix.ext.components
import org.mozilla.fenix.ext.hideToolbar
import org.mozilla.fenix.ext.measureNoInline
@@ -238,7 +237,7 @@ class HomeFragment : Fragment() {
                    recentBookmarks = emptyList(),
                    showCollectionPlaceholder = components.settings.showCollectionsPlaceholderOnHome,
                    showSetAsDefaultBrowserCard = components.settings.shouldShowSetAsDefaultBrowserCard(),
                    recentTabs = components.core.store.state.asRecentTabs()
                    recentTabs = emptyList()
                )
            )
        }
@@ -624,7 +623,7 @@ class HomeFragment : Fragment() {
                    ).getTip()
                },
                showCollectionPlaceholder = components.settings.showCollectionsPlaceholderOnHome,
                recentTabs = components.core.store.state.asRecentTabs(),
                recentTabs = emptyList(),
                recentBookmarks = emptyList()
            )
        )