[fenix] Issue https://github.com/mozilla-mobile/fenix/issues/20590: 'Jump back in' should obey feature flags

pull/600/head
Jonathan Almeida 3 years ago committed by Sebastian Kaspari
parent bb3071457a
commit 0ae2f837b6

@ -95,7 +95,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
@ -234,7 +233,7 @@ class HomeFragment : Fragment() {
recentBookmarks = emptyList(),
showCollectionPlaceholder = components.settings.showCollectionsPlaceholderOnHome,
showSetAsDefaultBrowserCard = components.settings.shouldShowSetAsDefaultBrowserCard(),
recentTabs = components.core.store.state.asRecentTabs(),
recentTabs = emptyList(),
historyMetadata = emptyList()
)
)
@ -642,7 +641,7 @@ class HomeFragment : Fragment() {
).getTip()
},
showCollectionPlaceholder = components.settings.showCollectionsPlaceholderOnHome,
recentTabs = components.core.store.state.asRecentTabs(),
recentTabs = emptyList(),
recentBookmarks = emptyList(),
historyMetadata = emptyList()
)

Loading…
Cancel
Save