1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 01:03:24 +00:00

[PM-3342] Not you button logs user out. (#2672)

This commit is contained in:
André Bispo
2023-08-08 19:36:49 +01:00
committed by GitHub
parent aac66b23bd
commit 6b2700bcaa
6 changed files with 6 additions and 14 deletions

View File

@@ -656,7 +656,6 @@ namespace Bit.iOS.Extension
vm.LogInWithMasterPasswordAction = () => DismissViewController(false, () => PerformSegue("lockPasswordSegue", this));
vm.RequestAdminApprovalAction = () => DismissViewController(false, () => LaunchLoginWithDevice(AuthRequestType.AdminApproval, vm.Email));
vm.LogInWithDeviceAction = () => DismissViewController(false, () => LaunchLoginWithDevice(AuthRequestType.AuthenticateAndUnlock, vm.Email));
vm.CloseAction = () => DismissViewController(false, () => LaunchHomePage());
}
var navigationPage = new NavigationPage(loginApproveDevicePage);