1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-28 03:57:43 +02: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
});
}
}
}