remove pointless change

This commit is contained in:
riley
2017-05-03 12:45:49 -06:00
parent 354b51b4fe
commit 39bd0eca6f
@@ -63,15 +63,13 @@ export const loadMore = (fetchMore) => ({limit, cursor, sort, tab, asset_id}) =>
asset_id
},
updateQuery: (oldData, {fetchMoreResult:{comments}}) => {
const updatedData = {
return {
...oldData,
[tab]: [
...oldData[tab],
...comments
]
};
return updatedData;
}
});
};