File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
aspnetcore/blazor/security/webassembly/standalone-with-identity Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -297,17 +297,17 @@ public async Task<TwoFactorResult> TwoFactorRequest(
297297 if (resetSharedKey )
298298 {
299299 response = await httpClient .PostAsJsonAsync (" manage/2fa" ,
300- new { enable , resetSharedKey });
300+ new { resetSharedKey });
301301 }
302302 else if (resetRecoveryCodes )
303303 {
304304 response = await httpClient .PostAsJsonAsync (" manage/2fa" ,
305- new { enable , resetRecoveryCodes });
305+ new { resetRecoveryCodes });
306306 }
307307 else if (forgetMachine )
308308 {
309309 response = await httpClient .PostAsJsonAsync (" manage/2fa" ,
310- new { enable , forgetMachine });
310+ new { forgetMachine });
311311 }
312312 else if (! string .IsNullOrEmpty (twoFactorCode ))
313313 {
You can’t perform that action at this time.
0 commit comments