Skip to content

Commit ef67733

Browse files
committed
Updates
1 parent 22cbd85 commit ef67733

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aspnetcore/blazor/security/webassembly/standalone-with-identity/qrcodes-for-authenticator-apps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)