This commit is contained in:
Paul Makles 2022-09-08 21:24:29 +01:00
commit eab5ed033f
2 changed files with 6 additions and 2 deletions

2
external/lang vendored

@ -1 +1 @@
Subproject commit bb3470b838a3c8ffa39d11aaf5eef7fd92d97ae3 Subproject commit 7440384751d251ae40064c4a5da8cf5a0dd0a016

View file

@ -100,7 +100,11 @@ export default function MultiFactorAuthentication() {
// Decide whether to disable or enable. // Decide whether to disable or enable.
if (mfa!.totp_mfa) { if (mfa!.totp_mfa) {
// Disable TOTP authentication // Disable TOTP authentication
await client.api.delete("/auth/mfa/totp", toConfig(ticket.token)); await client.api.delete(
"/auth/mfa/totp",
{},
toConfig(ticket.token),
);
setMFA({ setMFA({
...mfa!, ...mfa!,