1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

Remove Unnecessary Toast Message (#808)

Remove unnecessary info message when clicking search during the autofill flow. Fixes #807
This commit is contained in:
Dustin Falgout
2020-04-06 12:19:15 -05:00
committed by GitHub
parent 8ad44b405d
commit 78cfd82fdd

View File

@@ -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<string, object>
{
["longDuration"] = true
});
}
}
}