Hi!!
So we were using the Lock authentication without problems for a couple of months but now we want to use the mobile version and decided the best bet was to migrate to Universal Login. We are using auth0-hooks and can successfully create new users. However, we are not able to handle user data correctly after log in.
We read this issue
and the documentation but I can’t find the complete guide on what we should do with these variables:
this.lock = new Auth0Lock(props.clientId, props.domain, props.options);
this.tokenRenewalTimeout = null;
this.state = {
lock: this.lock,
login: this.login,
logout: this.logout,
isAuth: false
};
}