BITAU-160 Update feature flag name for authenticator sync (#3903)

This commit is contained in:
Andrew Haisting 2024-09-11 09:12:35 -05:00 committed by GitHub
parent 8f30742908
commit a5726fb72b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,7 @@ sealed class FlagKey<out T : Any> {
* Data object holding the key for syncing with the Bitwarden Authenticator app.
*/
data object AuthenticatorSync : FlagKey<Boolean>() {
override val keyName: String = "authenticator-sync"
override val keyName: String = "enable-authenticator-sync-android"
override val defaultValue: Boolean = false
override val isRemotelyConfigured: Boolean = false
}