diff --git a/common/app/Nav/redux/bin-epic.js b/common/app/Nav/redux/bin-epic.js deleted file mode 100644 index 8ac0cf620e..0000000000 --- a/common/app/Nav/redux/bin-epic.js +++ /dev/null @@ -1,10 +0,0 @@ -import { ofType } from 'redux-epic'; - -import { types } from './'; - -import { hidePane } from '../../Panes/redux'; - -export default function binEpic(actions) { - return actions::ofType(types.clickOnMap) - .map(() => hidePane('Map')); -} diff --git a/common/app/Nav/redux/index.js b/common/app/Nav/redux/index.js index 297d859434..81179b75c5 100644 --- a/common/app/Nav/redux/index.js +++ b/common/app/Nav/redux/index.js @@ -7,13 +7,11 @@ import { } from 'berkeleys-redux-utils'; import loadCurrentChallengeEpic from './load-current-challenge-epic.js'; -import binEpic from './bin-epic.js'; import ns from '../ns.json'; import { createEventMetaCreator } from '../../redux'; export const epics = [ - loadCurrentChallengeEpic, - binEpic + loadCurrentChallengeEpic ]; export const types = createTypes([