Skip to content

Commit

Permalink
Signup: Remove free trails from the plans only signup step
Browse files Browse the repository at this point in the history
  • Loading branch information
scruffian committed Feb 16, 2016
1 parent a239478 commit 288bd59
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/stylesheets/_components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
@import 'signup/steps/survey/style';
@import 'signup/steps/design-type/style';
@import 'signup/steps/plans/style';
@import 'signup/steps/paid-plans-with-free-trials/style';
@import 'signup/steps/paid-plans-only/style';
@import 'signup/steps/site/style';
@import 'signup/validation-fieldset/style';
@import 'support/support-user/style';
Expand Down
4 changes: 2 additions & 2 deletions client/signup/config/step-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var UserSignupComponent = require( 'signup/steps/user' ),
SiteComponent = require( 'signup/steps/site' ),
ThemeSelectionComponent = require( 'signup/steps/theme-selection' ),
PaidPlansWithFreeTrials = require( 'signup/steps/paid-plans-with-free-trials' ),
PaidPlansOnly = require( 'signup/steps/paid-plans-only' ),
PlansStepComponent = require( 'signup/steps/plans' ),
DomainsStepComponent = require( 'signup/steps/domains' ),
DesignTypeComponent = require( 'signup/steps/design-type' ),
Expand All @@ -17,7 +17,7 @@ module.exports = {
user: UserSignupComponent,
test: config( 'env' ) === 'development' ? require( 'signup/steps/test-step' ) : undefined,
plans: PlansStepComponent,
'select-plan': PaidPlansWithFreeTrials,
'select-plan': PaidPlansOnly,
domains: DomainsStepComponent,
survey: SurveyStepComponent,
'design-type': DesignTypeComponent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ module.exports = React.createClass( {

render: function() {
return (
<div className="paid-plans-with-free-trials">
<div className="paid-plans-only">
<PlansStepComponent
hideFreePlan
enableFreeTrials
{ ...this.props }
/>
</div>
Expand Down

0 comments on commit 288bd59

Please sign in to comment.