diff --git a/frontend/src/reducers/coMarket/coMarketPackagesReducers.js b/frontend/src/reducers/coMarket/coMarketPackagesReducers.js index 97a2db9..c161d30 100644 --- a/frontend/src/reducers/coMarket/coMarketPackagesReducers.js +++ b/frontend/src/reducers/coMarket/coMarketPackagesReducers.js @@ -12,7 +12,8 @@ const moduleReducers = {}; moduleReducers[REQUEST_SHOP_PACKAGES] = (state, action) => { return Object.assign({}, state, { - isLoading: action.isLoading + isLoading: action.isLoading, + shopSearch: false, }); }; @@ -61,6 +62,7 @@ moduleReducers[RECIEVE_SHOP_PACKAGES] = (state = {}, action) => { moduleReducers[SEARCH_SHOP_PACKAGES_REQUEST] = (state, action) => { return Object.assign({}, state, { + shopSearch: true, isLoading: action.isLoading }); };