diff --git a/UnlockWith.js b/UnlockWith.js index 406035b8b..34e36c31f 100644 --- a/UnlockWith.js +++ b/UnlockWith.js @@ -22,7 +22,7 @@ export default class UnlockWith extends Component { if (!biometricType) { await BlueApp.startAndDecrypt(); this.props.onSuccessfullyAuthenticated(); - } else if (biometricType !== false && !isStorageEncrypted) this.unlockWithBiometrics(); + } else if (!isStorageEncrypted && typeof biometricType === 'string') this.unlockWithBiometrics(); }); }