Please include the following information in your post:
SDK: @auth0/auth0-react
SDK Version: 1.9.0
Platform Version : Node v16.13.0
I am trying to get @auth0/auth0-react working for browsers with Intelligent Tracking Prevention, in particular Brave and Safari. I am able to login as the user once but as soon as I logout I cannot log back in. I found a way around this by using loginWithPopup and that resolves the issue. Not sure why it does work with loginWithRedirect.
My initialization of the AuthProvider looks like…
domain={domain}
clientId={clientId}
redirectUri={host}
audience={audience}
cacheLocation="localstorage"
useRefreshTokens={true}
scope={'offline_access'}