merge: branch 'master' into production

This commit is contained in:
Paul Makles 2022-09-08 17:22:00 +01:00
commit 263d97853a
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.
if (mfa!.totp_mfa) {
// Disable TOTP authentication
await client.api.delete("/auth/mfa/totp", toConfig(ticket.token));
await client.api.delete(
"/auth/mfa/totp",
{},
toConfig(ticket.token),
);
setMFA({
...mfa!,