diff -r 1f340f3597a8 -r ea92f4fe783d client/src/store/noteRecord.js --- a/client/src/store/noteRecord.js Tue Oct 09 19:07:47 2018 +0200 +++ b/client/src/store/noteRecord.js Mon Oct 08 18:35:47 2018 +0200 @@ -1,7 +1,7 @@ -import Immutable from 'immutable'; +import { Record } from '.'; import { ActionEnum } from '../constants'; -export default Immutable.Record({ +export default Record({ _id: '', session: '', @@ -16,4 +16,4 @@ marginComment: '', action: ActionEnum.NONE -}, 'Note'); +});