An issue with nextjs-auth0 was causing the logout process to not be completed. That caused the user to be immediately logged back in when clicking "login" again without the need to select an account and enter password.
There is still an open issue for this. This PR fixes the behavior by doing the redirect with window.location and using <a> tag instead of using the nextjs router and <Link> tag.
An issue with nextjs-auth0 was causing the logout process to not be completed. That caused the user to be immediately logged back in when clicking "login" again without the need to select an account and enter password.
There is still an open issue for this. This PR fixes the behavior by doing the redirect with
window.location
and using<a>
tag instead of using the nextjs router and<Link>
tag.