Using nextjs-auth0 v3.0.1 once I login/sign up from the login page I can’t reach it even after logging out. It just logs in to the previous user automatically without displaying the prompt page.
Is there a way to force the universal login page to be displayed when these links are opened?
Found the cause of the problem.
In the navigation the “sign out” was using <Link href="/api/auth/logout" legacyBehavior><a>..</a></Link> instead of only <a href="/api/auth/logout">..</a>