diff --git a/plugins/auth-backend/src/providers/auth0/provider.ts b/plugins/auth-backend/src/providers/auth0/provider.ts index fe45b63b98..95e83d2cce 100644 --- a/plugins/auth-backend/src/providers/auth0/provider.ts +++ b/plugins/auth-backend/src/providers/auth0/provider.ts @@ -134,7 +134,9 @@ export class Auth0AuthProvider implements OAuthHandlers { state: encodeState(req.state), ...(this.audience ? { audience: this.audience } : {}), ...(this.connection ? { connection: this.connection } : {}), - ...(this.connectionScope ? { connection_scope: this.connectionScope } : {}), + ...(this.connectionScope + ? { connection_scope: this.connectionScope } + : {}), }); } @@ -145,7 +147,9 @@ export class Auth0AuthProvider implements OAuthHandlers { >(req, this._strategy, { ...(this.audience ? { audience: this.audience } : {}), ...(this.connection ? { connection: this.connection } : {}), - ...(this.connectionScope ? { connection_scope: this.connectionScope } : {}), + ...(this.connectionScope + ? { connection_scope: this.connectionScope } + : {}), }); return {