this.auth0Client.webAuth.authorize(
{
scope: 'openid profile email',
audience: Config.AUTH0_AUDIENCE,
prompt: 'login',
screen_hint: landingPage,
},
{ ephemeralSession: false },
);
for Login and SignUp am using this predefined method am Getting Config.AUTH0_AUDIENCE getting landingPage but for 15 Minutes non of the users user can login after 15 minutes it’s resolved by it self what will be the reason it’s from auth0 side that’s clear

