diff -r 2e4e9f9ebc4f -r f16a080e0bc4 client/src/reducers/notesReducer.js --- a/client/src/reducers/notesReducer.js Mon Jun 19 18:32:27 2017 +0200 +++ b/client/src/reducers/notesReducer.js Mon Jun 19 21:37:33 2017 +0200 @@ -7,7 +7,8 @@ case types.ADD_NOTE: return state.push(new noteRecord(action.note)); case types.LOAD_NOTES_BY_SESSION: - return action.notes; + //return action.notes; + return state; default: return state; }