From c6e7fd95c8b4fda81a902e0027755a0456f45a97 Mon Sep 17 00:00:00 2001 From: Shane Melton Date: Fri, 10 Mar 2023 15:39:30 -0800 Subject: [PATCH] [AC-1070] Remove type from ShowToast call --- src/App/Pages/Accounts/UpdateTempPasswordPageViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Pages/Accounts/UpdateTempPasswordPageViewModel.cs b/src/App/Pages/Accounts/UpdateTempPasswordPageViewModel.cs index 099b0d8ff..be846a233 100644 --- a/src/App/Pages/Accounts/UpdateTempPasswordPageViewModel.cs +++ b/src/App/Pages/Accounts/UpdateTempPasswordPageViewModel.cs @@ -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(); }