diff --git a/app/views/ProfileView/index.js b/app/views/ProfileView/index.js index 1f89d017f..3121db989 100644 --- a/app/views/ProfileView/index.js +++ b/app/views/ProfileView/index.js @@ -81,7 +81,7 @@ class ProfileView extends React.Component { componentWillReceiveProps(nextProps) { const { user } = this.props; - if (user !== nextProps.user) { + if (!equal(user, nextProps.user)) { this.init(nextProps.user); } }