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

This commit is contained in:
Gabriel Luong 2020-09-08 14:30:13 -04:00 committed by GitHub
parent e0071341c7
commit 7aa6514499
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

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