Remove immutable from embed stream

This commit is contained in:
Chi Vinh Le
2017-08-11 22:50:12 +07:00
parent b60c879599
commit 7360a43898
20 changed files with 236 additions and 214 deletions
@@ -22,8 +22,8 @@ const UserBox = ({loggedIn, user, logout, onShowProfile}) => (
);
const mapStateToProps = ({auth}) => ({
loggedIn: auth.toJS().loggedIn,
user: auth.toJS().user
loggedIn: auth.loggedIn,
user: auth.user
});
const mapDispatchToProps = (dispatch) =>