From 78cfd82fdd2d4d2dae9b5567d4c73001ce0cdaae Mon Sep 17 00:00:00 2001 From: Dustin Falgout Date: Mon, 6 Apr 2020 12:19:15 -0500 Subject: [PATCH] Remove Unnecessary Toast Message (#808) Remove unnecessary info message when clicking search during the autofill flow. Fixes #807 --- src/App/Pages/Vault/AutofillCiphersPage.xaml.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs b/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs index 3fcfef52e..4834bbeb8 100644 --- a/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs +++ b/src/App/Pages/Vault/AutofillCiphersPage.xaml.cs @@ -78,12 +78,6 @@ namespace Bit.App.Pages { var page = new CiphersPage(null, autofillUrl: _vm.Uri); Application.Current.MainPage = new NavigationPage(page); - _platformUtilsService.ShowToast("info", null, - string.Format(AppResources.BitwardenAutofillServiceSearch, _vm.Name), - new System.Collections.Generic.Dictionary - { - ["longDuration"] = true - }); } } }