diff --git a/src/Core/Services/VaultTimeoutService.cs b/src/Core/Services/VaultTimeoutService.cs index b5c985095..d9ee8fd44 100644 --- a/src/Core/Services/VaultTimeoutService.cs +++ b/src/Core/Services/VaultTimeoutService.cs @@ -63,13 +63,6 @@ namespace Bit.Core.Services /// public async Task IsLockedAsync(string userId = null) { - // If biometrics are used, we can use the flag to determine locked state - var biometricSet = await IsBiometricLockSetAsync(userId); - if (biometricSet && await _stateService.GetBiometricLockedAsync(userId)) - { - return true; - } - if (!await _cryptoService.HasUserKeyAsync(userId)) { try