From 5018e4a7d4dc8ee017823151459c121d1cc1481a Mon Sep 17 00:00:00 2001 From: Darren Mackintosh Date: Thu, 14 Mar 2019 11:47:11 +0000 Subject: [PATCH] Updated reference to choices Because I have attempted to fix the WebPack issue with choices, I need to change how it is referenced --- src/scripts/reducers/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/reducers/index.js b/src/scripts/reducers/index.js index 31dc7b3..a3fced6 100644 --- a/src/scripts/reducers/index.js +++ b/src/scripts/reducers/index.js @@ -1,7 +1,7 @@ import { combineReducers } from 'redux'; import items from './items'; import groups from './groups'; -import choices from './choices'; +import { choices } from './choices'; import general from './general'; import { cloneObject } from '../lib/utils';