Skip to content

Commit

Permalink
Add plan to second tracks event
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed May 23, 2019
1 parent d599c2b commit 6f9357e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _inc/client/my-plan/my-plan-header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class MyPlanHeader extends React.Component {
);

render() {
const { siteSlug } = this.props;
const { plan, siteSlug } = this.props;
let planCard = '';
switch ( getPlanClass( this.props.plan ) ) {
switch ( getPlanClass( plan ) ) {
case 'is-free-plan':
planCard = (
<div className="jp-landing__plan-card">
Expand Down Expand Up @@ -155,7 +155,7 @@ class MyPlanHeader extends React.Component {
return (
<>
<div>{ planCard }</div>
<ChecklistProgress />
<ChecklistProgress plan={ plan } />
</>
);
}
Expand Down

0 comments on commit 6f9357e

Please sign in to comment.