client/src/reducers/notesReducer.js
changeset 66 f402435be429
parent 62 b2514a9bcd49
child 79 772b73e31069
--- a/client/src/reducers/notesReducer.js	Tue Jun 20 19:04:42 2017 +0200
+++ b/client/src/reducers/notesReducer.js	Tue Jun 20 19:05:01 2017 +0200
@@ -6,9 +6,6 @@
   switch (action.type) {
     case types.ADD_NOTE:
       return state.push(new NoteRecord(action.note));
-    case types.LOAD_NOTES_BY_SESSION:
-      //return action.notes;
-      return state;
     default:
       return state;
   }