mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 23:27:26 +01:00
Merge pull request #7423 from BlueWallet/marcosrdz-patch-3
Update UnlockWith.tsx
This commit is contained in:
commit
6550e955f6
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ const UnlockWith: React.FC = () => {
|
|||
if (storageIsEncrypted) {
|
||||
dispatch({ type: SET_AUTH, payload: { type: AuthType.Encrypted, detail: undefined } });
|
||||
unlockWithKey();
|
||||
} else if (biometricUseCapableAndEnabled) {
|
||||
} else if (biometricUseCapableAndEnabled && biometricType) {
|
||||
dispatch({ type: SET_AUTH, payload: { type: AuthType.Biometrics, detail: biometricType } });
|
||||
unlockUsingBiometrics();
|
||||
} else if (biometricsUseEnabled && biometricType === undefined) {
|
||||
|
|
Loading…
Add table
Reference in a new issue