diff -r 1f340f3597a8 -r ea92f4fe783d client/src/store/sessionRecord.js --- a/client/src/store/sessionRecord.js Tue Oct 09 19:07:47 2018 +0200 +++ b/client/src/store/sessionRecord.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: '', title: '', @@ -14,4 +14,4 @@ action: ActionEnum.NONE, -}, 'Session'); +});