CORS login via auth0-js.login() - does not send “rules” errors to callback
Hi,
i use auth0-hjs CORS login
auth.login(
{
realm: process.env.AUTH0_CONNECTION,
username,
password,
state,
},
callback
);
the problem is that if i have a Rules like “force email verification” on my dashboard,
i cannot get the error “please verify email” in this callback, instead, CORS login went ok,
i have to “get” the error on NEXT redirect to my /callback .
Instead others errors, like Username or email not valid are ok on the callback, without handle redirection!