From 1ea284d4282bc98f2c7cfdce4e7cc0360dd4c70b Mon Sep 17 00:00:00 2001 From: Riley Davis Date: Thu, 15 Dec 2016 13:43:06 -0700 Subject: [PATCH] remove fromJS call --- client/coral-framework/reducers/user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/coral-framework/reducers/user.js b/client/coral-framework/reducers/user.js index 6e9f3529c..6bdf2a9d6 100644 --- a/client/coral-framework/reducers/user.js +++ b/client/coral-framework/reducers/user.js @@ -34,9 +34,9 @@ export default function user (state = initialState, action) { return state .set('settings', action.settings); case actions.COMMENTS_BY_USER_SUCCESS: - return state.set('myComments', fromJS(action.comments)); + return state.set('myComments', action.comments); case assetActions.MULTIPLE_ASSETS_SUCCESS: - return state.set('myAssets', fromJS(action.assets)); + return state.set('myAssets', action.assets); default : return state; }