From f434e0dd67ec64bad2027431fa788601feb6f3c6 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Wed, 11 Jun 2025 10:43:50 +0530 Subject: [PATCH] Part of the subclass --- web/packages/accounts/services/user.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/web/packages/accounts/services/user.ts b/web/packages/accounts/services/user.ts index 2990b54ec3..0694077f84 100644 --- a/web/packages/accounts/services/user.ts +++ b/web/packages/accounts/services/user.ts @@ -524,7 +524,6 @@ export interface UserVerificationResponse { * {@link twoFactorSessionID}. */ twoFactorSessionIDV2?: string | undefined; - srpM2?: string | undefined; } /** @@ -552,9 +551,6 @@ export const EmailOrSRPVerificationResponse = z.object({ // // See `useSecondFactorChoiceIfNeeded`. twoFactorSessionIDV2: z.string().nullish().transform(nullToUndefined), - // srpM2 is sent only if the user is logging via SRP. It is is the SRP M2 - // value aka the proof that the server has the verifier. - srpM2: z.string().nullish().transform(nullToUndefined), }); /**