Skip to content

Commit

Permalink
Merge pull request #20 from Financial-Times/remove-syndicationRedux-u…
Browse files Browse the repository at this point in the history
…sage

remove usage of syndicationRedux flag
  • Loading branch information
leggsimon authored Apr 4, 2018
2 parents 7e976fa + 7109bb6 commit ff6e4ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function init (flags){
}

getUserStatus().then(user => {
if (user && user.migrated === true || flags.get('syndicationRedux')) {
if (user && user.migrated === true) {
return initRedux(flags, user);
}

Expand Down
2 changes: 1 addition & 1 deletion src/js/redux.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function init (flags, user) {
}

function _init (flags, user) {
if (user && user.migrated !== true && !flags.get('syndicationRedux')) {
if (user && user.migrated !== true) {
return;
}

Expand Down

0 comments on commit ff6e4ab

Please sign in to comment.