1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-14 14:33:46 +00:00

[AC-1070] Remove type from ShowToast call

This commit is contained in:
Shane Melton
2023-03-10 15:39:30 -08:00
parent c0de43b02a
commit c6e7fd95c8

View File

@@ -121,7 +121,7 @@ namespace Bit.App.Pages
// Clear the force reset password reason
await _stateService.SetForcePasswordResetReasonAsync(null);
_platformUtilsService.ShowToast("success", null, AppResources.UpdatedMasterPassword);
_platformUtilsService.ShowToast(null, null, AppResources.UpdatedMasterPassword);
UpdateTempPasswordSuccessAction?.Invoke();
}