diff --git a/src/App/Pages/LoginPage.cs b/src/App/Pages/LoginPage.cs index dd7015b8d..cd63a3a17 100644 --- a/src/App/Pages/LoginPage.cs +++ b/src/App/Pages/LoginPage.cs @@ -128,13 +128,16 @@ namespace Bit.App.Pages base.OnAppearing(); MessagingCenter.Send(Application.Current, "ShowStatusBar", true); - if(!string.IsNullOrWhiteSpace(EmailCell.Entry.Text)) + if(string.IsNullOrWhiteSpace(_email)) { - PasswordCell.Entry.Focus(); - } - else - { - EmailCell.Entry.Focus(); + if(!string.IsNullOrWhiteSpace(EmailCell.Entry.Text)) + { + PasswordCell.Entry.Focus(); + } + else + { + EmailCell.Entry.Focus(); + } } }