From bb759c16ea44d81ae19b57bcc033229fedf136f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Bispo?= Date: Wed, 16 Nov 2022 16:46:13 +0000 Subject: [PATCH] [SG-808] Change navigation on remove account after logout by timeout (#2193) --- src/App/Utilities/AccountManagement/AccountsManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Utilities/AccountManagement/AccountsManager.cs b/src/App/Utilities/AccountManagement/AccountsManager.cs index 9bbcb88d6..b804823f2 100644 --- a/src/App/Utilities/AccountManagement/AccountsManager.cs +++ b/src/App/Utilities/AccountManagement/AccountsManager.cs @@ -109,7 +109,7 @@ namespace Bit.App.Utilities.AccountManagement } else { - _accountsManagerHost.Navigate(NavigationTarget.HomeLogin); + _accountsManagerHost.Navigate(NavigationTarget.HomeLogin, new HomeNavigationParams(false)); } } }