We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78f99ba commit c7ce50eCopy full SHA for c7ce50e
packages/console/src/pages/SignInExperience/PageContent/utils/parser.ts
@@ -148,8 +148,8 @@ export const sieFormDataParser = {
148
signUp: signUpFormDataParser.toSignUp(signUp),
149
signInMode: createAccountEnabled ? SignInMode.SignInAndRegister : SignInMode.SignIn,
150
customCss: customCss?.length ? customCss : null,
151
- // TODO @wangsijie: Remove this once the feature is ready
152
- ...conditional(isDevFeaturesEnabled && { forgotPasswordMethods }),
+ // TODO @wangsijie: Remove this once forgot password methods feature is ready for production.
+ forgotPasswordMethods: isDevFeaturesEnabled ? forgotPasswordMethods : null,
153
};
154
},
155
0 commit comments