From 8e09f0cc154c69eb09653ce66a75fa7699765aa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Wed, 16 Nov 2022 12:38:45 +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)); } } }