From ea745665c8e2869d82ba8a109d1ef1abf53b202f Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 3 Jul 2019 12:21:06 -0400 Subject: [PATCH] remove continue button if no 2fa available --- src/App/Pages/Accounts/TwoFactorPageViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Pages/Accounts/TwoFactorPageViewModel.cs b/src/App/Pages/Accounts/TwoFactorPageViewModel.cs index 142919a7c..094434055 100644 --- a/src/App/Pages/Accounts/TwoFactorPageViewModel.cs +++ b/src/App/Pages/Accounts/TwoFactorPageViewModel.cs @@ -160,7 +160,7 @@ namespace Bit.App.Pages { _messagingService.Send("listenYubiKeyOTP", false); } - if(DuoMethod) + if(SelectedProviderType == null || DuoMethod) { page.RemoveContinueButton(); }