Readd login fixes

This commit is contained in:
Chi Vinh Le
2017-05-16 17:26:53 +07:00
parent 81f51b69ec
commit ec19618052
@@ -25,6 +25,14 @@ class ProfileContainer extends Component {
};
}
componentWillReceiveProps(nextProps) {
if (this.props.auth.loggedIn !== nextProps.auth.loggedIn) {
// Refetch after login/logout.
this.props.data.refetch();
}
}
handleTabChange = (tab) => {
this.setState({
activeTab: tab
@@ -39,7 +47,7 @@ class ProfileContainer extends Component {
return <NotLoggedIn showSignInDialog={showSignInDialog} />;
}
if (data.loading) {
if (!me || data.loading) {
return <Spinner />;
}