diff --git a/src/App/Pages/Send/SendGroupingsPage/SendGroupingsPage.xaml.cs b/src/App/Pages/Send/SendGroupingsPage/SendGroupingsPage.xaml.cs index 6daf4fdfe..d15c5e21c 100644 --- a/src/App/Pages/Send/SendGroupingsPage/SendGroupingsPage.xaml.cs +++ b/src/App/Pages/Send/SendGroupingsPage/SendGroupingsPage.xaml.cs @@ -161,7 +161,7 @@ namespace Bit.App.Pages if (DoOnce()) { var page = new SendsPage(_vm.Filter, _vm.Type != null); - await Navigation.PushModalAsync(new NavigationPage(page), false); + await Navigation.PushModalAsync(new NavigationPage(page)); } } diff --git a/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs b/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs index ba63e395d..13bf9f6ec 100644 --- a/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs +++ b/src/App/Pages/Vault/GroupingsPage/GroupingsPage.xaml.cs @@ -234,7 +234,7 @@ namespace Bit.App.Pages { var page = new CiphersPage(_vm.Filter, _vm.FolderId != null, _vm.CollectionId != null, _vm.Type != null, deleted: _vm.Deleted); - await Navigation.PushModalAsync(new NavigationPage(page), false); + await Navigation.PushModalAsync(new NavigationPage(page)); } }