From 7130d8a18cb34847e4139ebed134ec973d64e0b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Tue, 25 Apr 2023 14:41:35 +0100 Subject: [PATCH] [PM-1946] remove ApprovePasswordlessLogins value on logout (#2494) --- src/Core/Services/StateService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Core/Services/StateService.cs b/src/Core/Services/StateService.cs index 44597b535..24a078b6b 100644 --- a/src/Core/Services/StateService.cs +++ b/src/Core/Services/StateService.cs @@ -1428,6 +1428,7 @@ namespace Bit.Core.Services await SetEncryptedPasswordGenerationHistoryAsync(null, userId); await SetEncryptedSendsAsync(null, userId); await SetSettingsAsync(null, userId); + await SetApprovePasswordlessLoginsAsync(null, userId); } private async Task ScaffoldNewAccountAsync(Account account)