From ef6184a05ba2b5eda91e5bc5de2693f96a85da56 Mon Sep 17 00:00:00 2001 From: Federico Maccaroni Date: Tue, 25 Jan 2022 17:07:10 -0300 Subject: [PATCH] Added hide loading after requesting OTP on verification code (#1732) --- src/App/Pages/Accounts/VerificationCodeViewModel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App/Pages/Accounts/VerificationCodeViewModel.cs b/src/App/Pages/Accounts/VerificationCodeViewModel.cs index b9c849b0e..5bc57a2f4 100644 --- a/src/App/Pages/Accounts/VerificationCodeViewModel.cs +++ b/src/App/Pages/Accounts/VerificationCodeViewModel.cs @@ -99,6 +99,8 @@ namespace Bit.App.Pages await _apiService.PostAccountRequestOTP(); + await _deviceActionService.HideLoadingAsync(); + SendCodeStatus = AppResources.AVerificationCodeWasSentToYourEmail; _platformUtilsService.ShowToast(null, null, AppResources.CodeSent);