From b91ff09e27fdccb4ee3008844c449b8e90fb2d58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Fri, 23 Dec 2022 17:11:14 +0000 Subject: [PATCH] [SG-174] Remove login with device button (#2259) --- src/App/Pages/Accounts/LoginPageViewModel.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App/Pages/Accounts/LoginPageViewModel.cs b/src/App/Pages/Accounts/LoginPageViewModel.cs index ba04b1e4b..1e781e7d4 100644 --- a/src/App/Pages/Accounts/LoginPageViewModel.cs +++ b/src/App/Pages/Accounts/LoginPageViewModel.cs @@ -149,7 +149,8 @@ namespace Bit.App.Pages Email = await _stateService.GetRememberedEmailAsync(); } var deviceIdentifier = await _appIdService.GetAppIdAsync(); - IsKnownDevice = await _apiService.GetKnownDeviceAsync(Email, deviceIdentifier); + // TODO uncomment to enable login with device + //IsKnownDevice = await _apiService.GetKnownDeviceAsync(Email, deviceIdentifier); CanRemoveAccount = await _stateService.GetActiveUserEmailAsync() != Email; await _deviceActionService.HideLoadingAsync(); }