[fenix] For https://github.com/mozilla-mobile/fenix/issues/24780 - Part 3: Show the correct toolbar title if address autofill is enabled

pull/600/head
Gabriel Luong 2 years ago committed by mergify[bot]
parent 86c4a691c7
commit d10ed72be9

@ -113,7 +113,11 @@ class AutofillSettingFragment : BiometricPromptPreferenceFragment() {
override fun onResume() {
super.onResume()
showToolbar(getString(R.string.preferences_credit_cards))
if (requireComponents.settings.addressFeature) {
showToolbar(getString(R.string.preferences_autofill))
} else {
showToolbar(getString(R.string.preferences_credit_cards))
}
SyncPreferenceView(
syncPreference = requirePreference(R.string.pref_key_credit_cards_sync_cards_across_devices),

Loading…
Cancel
Save