Skip to content

Commit

Permalink
Change line of code
Browse files Browse the repository at this point in the history
  • Loading branch information
thejsj committed Dec 14, 2016
1 parent 152157f commit be9adba
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions client/services/demoFlowService.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ function demoFlowService(
});

function shouldShowTeamCTA () {
if (!featureFlags.flags.teamCTA) {
return false;
}
return currentOrg.isPersonalAccount() && !isInDemoFlow();
return featureFlags.flags.teamCTA && currentOrg.isPersonalAccount() && !isInDemoFlow();
}

return {
Expand Down

0 comments on commit be9adba

Please sign in to comment.