For #14629 - Enable showing frequently visited sites ON by default (#14630)

pull/90/head
Gabriel Luong 4 years ago committed by GitHub
parent e0071341c7
commit 7aa6514499
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,7 +29,7 @@ object FeatureFlags {
/**
* Enables showing the top frequently visited sites
*/
val topFrecentSite = Config.channel.isNightlyOrDebug
const val topFrecentSite = true
/**
* Enables wait til first contentful paint

@ -102,7 +102,7 @@ class Settings(private val appContext: Context) : PreferencesHolder {
var showTopFrecentSites by featureFlagPreference(
appContext.getPreferenceKey(R.string.pref_key_enable_top_frecent_sites),
default = false,
default = true,
featureFlag = FeatureFlags.topFrecentSite
)

Loading…
Cancel
Save