diff --git a/src/App/Pages/Accounts/TwoFactorPage.xaml b/src/App/Pages/Accounts/TwoFactorPage.xaml index ee1a59440..3347da6f0 100644 --- a/src/App/Pages/Accounts/TwoFactorPage.xaml +++ b/src/App/Pages/Accounts/TwoFactorPage.xaml @@ -68,6 +68,7 @@ { _vm.Init(); - if(_vm.TotpMethod || _vm.YubikeyMethod) + if(_vm.TotpMethod) { RequestFocus(_totpEntry); } + else if(_vm.YubikeyMethod) + { + RequestFocus(_yubikeyTokenEntry); + } return Task.FromResult(0); }); }