diff --git a/screen/UnlockWith.tsx b/screen/UnlockWith.tsx index 38298213d..841a35b32 100644 --- a/screen/UnlockWith.tsx +++ b/screen/UnlockWith.tsx @@ -55,6 +55,10 @@ const UnlockWith: React.FC = () => { const { setWalletsInitialized, isStorageEncrypted, startAndDecrypt } = useStorage(); const { deviceBiometricType, unlockWithBiometrics, isBiometricUseCapableAndEnabled, isBiometricUseEnabled } = useBiometrics(); + useEffect(() => { + setWalletsInitialized(false); + }, [setWalletsInitialized]); + const successfullyAuthenticated = useCallback(() => { setWalletsInitialized(true); isUnlockingWallets.current = false;