Hi @Auth0.user ,
I saw here in the community some confusion around redirecting a user back to other than the root url destination after a successful authentication with auth0/auth0-angular.
If you intend to provide a specific URL to direct the user to after the login flow ends, the LoginWithRedirect method’s options serves it - AuthService | @auth0/auth0-angular.
loginWithRedirect({
appState: { target: '/some-url' }
})
Here is another topic’s discussion around it that potentially can help - Redirect URI issue after successful login with @auth0/auth0-angular.
I hope this will help, but if not, the repo’s feedback / issues section is open for contribution.