diff --git a/src/modules/CategorySelector/CategorySelector.reducer.js b/src/modules/CategorySelector/CategorySelector.reducer.js index 3e752f8..fb9e97b 100644 --- a/src/modules/CategorySelector/CategorySelector.reducer.js +++ b/src/modules/CategorySelector/CategorySelector.reducer.js @@ -1,4 +1,5 @@ import reducerUtil from '../../common/utils/reducer' +import { EXCHANGES } from '../../common/data/categories' const UPDATE_CATEGORY = 'UPDATE_CATEGORY' @@ -7,7 +8,7 @@ export const selectCategory = category => ({ payload: category, }) -const initialState = null +const initialState = EXCHANGES const categoryChange = (_, category) => category