diff options
Diffstat (limited to 'src/content/actions/follow-controller.js')
-rw-r--r-- | src/content/actions/follow-controller.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/content/actions/follow-controller.js b/src/content/actions/follow-controller.js index 3fd4dce..006b248 100644 --- a/src/content/actions/follow-controller.js +++ b/src/content/actions/follow-controller.js @@ -1,9 +1,10 @@ import actions from 'content/actions'; -const enable = (newTab) => { +const enable = (newTab, background) => { return { type: actions.FOLLOW_CONTROLLER_ENABLE, newTab, + background, }; }; |