Skip to content

Commit

Permalink
Feature Flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ockham committed Jul 8, 2018
1 parent b1af337 commit 5619fb6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/my-sites/plans/current-plan/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import DomainWarnings from 'my-sites/domains/components/domain-warnings';
import isSiteAutomatedTransfer from 'state/selectors/is-site-automated-transfer';
import SidebarNavigation from 'my-sites/sidebar-navigation';
import ChecklistShow from 'my-sites/checklist/checklist-show';
import { isEnabled } from 'config';

class CurrentPlan extends Component {
static propTypes = {
Expand Down Expand Up @@ -143,7 +144,7 @@ class CurrentPlan extends Component {
isAutomatedTransfer={ isAutomatedTransfer }
includePlansLink={ currentPlan && isFreeJetpackPlan( currentPlan ) }
/>
{ isJetpack && <ChecklistShow /> }
{ isEnabled( 'jetpack/checklist' ) && isJetpack && <ChecklistShow /> }
<div
className={ classNames( 'current-plan__header-text current-plan__text', {
'is-placeholder': { isLoading },
Expand Down

0 comments on commit 5619fb6

Please sign in to comment.