Skip to content

Commit

Permalink
Remove experiment related code (#95275)
Browse files Browse the repository at this point in the history
  • Loading branch information
niranjan-uma-shankar authored Oct 10, 2024
1 parent ca60d4c commit d6a3ef1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/blocks/signup-form/passwordless.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class PasswordlessSignupForm extends Component {
password: '',
};
const { flowName, queryArgs = {} } = this.props;
const devAccountLandingPageRefs = [ 'hosting-lp', 'developer-lp', 'wordpress-hosting-dev-lp' ];
const devAccountLandingPageRefs = [ 'hosting-lp', 'developer-lp' ];
const isDevAccount = devAccountLandingPageRefs.includes( queryArgs.ref );

// If not in a flow, submit the form as a standard signup form.
Expand Down
2 changes: 1 addition & 1 deletion client/blocks/signup-form/social.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class SocialSignupForm extends Component {
export default connect(
( state ) => {
const query = getCurrentQueryArguments( state );
const devAccountLandingPageRefs = [ 'hosting-lp', 'developer-lp', 'wordpress-hosting-dev-lp' ];
const devAccountLandingPageRefs = [ 'hosting-lp', 'developer-lp' ];
const isDevAccount = devAccountLandingPageRefs.includes( query?.ref );

return {
Expand Down

0 comments on commit d6a3ef1

Please sign in to comment.