diff --git a/frontend/components/App/App.jsx b/frontend/components/App/App.jsx index 7c52bb868b..ea4ebb6792 100644 --- a/frontend/components/App/App.jsx +++ b/frontend/components/App/App.jsx @@ -42,7 +42,7 @@ export class App extends Component { componentWillReceiveProps (nextProps) { const { dispatch, user } = nextProps; - if (this.props.user !== user) { + if (user && this.props.user !== user) { dispatch(getConfig()); } }