The issue was that the redirect for the frontend app url was wrong.
I changed it to http://localhost:3000/connect/auth0/redirect to match my redirect route in the front end app.
<Route exact path="/connect/:providerName/redirect" component={LoginRedirect} />
After that everything started to work as expected.
After logging in, it creates the user.
Hope this helps.

