diff --git a/web/src/user/user-settings/mfa/MFADevicesPage.ts b/web/src/user/user-settings/mfa/MFADevicesPage.ts index 5b26d152e..4b05d6c64 100644 --- a/web/src/user/user-settings/mfa/MFADevicesPage.ts +++ b/web/src/user/user-settings/mfa/MFADevicesPage.ts @@ -97,6 +97,10 @@ export class MFADevicesPage extends Table { return api.authenticatorsStaticDestroy(id); case "authentik_stages_authenticator_webauthn.WebAuthnDevice": return api.authenticatorsWebauthnDestroy(id); + case "authentik_stages_authenticator_mobile.mobiledevice": + return api.authenticatorsMobileDestroy({ + uuid: device.pk as unknown as string, + }); default: break; }