diff --git a/legacy/crypto/walletManager.js b/legacy/crypto/walletManager.js index e968c210d4..f3ba7349ad 100644 --- a/legacy/crypto/walletManager.js +++ b/legacy/crypto/walletManager.js @@ -450,8 +450,10 @@ class WalletManager { this._wallet = wallet this._id = walletMeta.id + const canBiometricsBeUsed = await canBiometricEncryptionBeEnabled() + const shouldDisableEasyConfirmation = - walletMeta.isEasyConfirmationEnabled && (!isSystemAuthEnabled || (await !canBiometricEncryptionBeEnabled())) + walletMeta.isEasyConfirmationEnabled && (!isSystemAuthEnabled || !canBiometricsBeUsed) if (shouldDisableEasyConfirmation) { wallet.isEasyConfirmationEnabled = false