Unable to issue redirect for OAuth 2.0 transaction after upgrading to `@auth0/angular@2.1.0`

Thanks for following up @davidsidlinger!

Do you see the same issue if you add the redirect_uri to authorizationParams like so:

AuthModule.forRoot({
            cacheLocation: "localstorage",
            clientId: AG_OIDC_CLIENT_ID,
            domain: AG_OIDC_DOMAIN,
            httpInterceptor: {
                allowedList: [httpInterceptorPath],
            },
            useRefreshTokens: true,
            authorizationParams: {
                audience: AG_OIDC_AUDIENCE,
                redirect_uri:your_redirect_uri
            },
        }),

Here’s a similar topic/issue: