diff --git a/react/reducers/show.js b/react/reducers/show.js index 66cf5f21..781bda61 100644 --- a/react/reducers/show.js +++ b/react/reducers/show.js @@ -45,6 +45,8 @@ const initialState = { error : null, status: LOCAL_CHECK, }, + viewedChannels: [], + viewedClaims : [], }; /* @@ -79,7 +81,7 @@ export default function (state = initialState, action) { // show channel cases case actions.SHOW_CHANNEL_ERROR: return Object.assign({}, state, { - showChannel: Object.assign({}, state.showAsset, { + showChannel: Object.assign({}, state.showChannel, { error: action.data, }), });