call setCustomData after join. close #7841

This commit is contained in:
Joao Siebel 2019-07-29 13:42:08 -03:00
parent a98024e3f9
commit cbbc464254

View File

@ -143,7 +143,6 @@ class JoinHandler extends Component {
if (response.returncode !== 'FAILED') {
await setAuth(response);
await setCustomData(response);
setBannerProps(response);
setLogoURL(response);
@ -177,6 +176,7 @@ class JoinHandler extends Component {
}, 'User faced an error on main.joinRouteHandler.');
}
this.setState({ joined: true });
await setCustomData(response);
}
render() {