diff --git a/src/Umbraco.Web.UI.Client/src/shared/auth/auth-flow.ts b/src/Umbraco.Web.UI.Client/src/shared/auth/auth-flow.ts index 0d12142e73..34134e3503 100644 --- a/src/Umbraco.Web.UI.Client/src/shared/auth/auth-flow.ts +++ b/src/Umbraco.Web.UI.Client/src/shared/auth/auth-flow.ts @@ -88,8 +88,7 @@ export class UmbAuthFlow { readonly #storageBackend: LocalStorageBackend; // state - #configuration: AuthorizationServiceConfiguration; - readonly #openIdConnectUrl: string; + readonly #configuration: AuthorizationServiceConfiguration; readonly #redirectUri: string; readonly #clientId: string; readonly #scope: string; @@ -104,7 +103,6 @@ export class UmbAuthFlow { clientId = 'umbraco-back-office', scope = 'offline_access', ) { - this.#openIdConnectUrl = openIdConnectUrl; this.#redirectUri = redirectUri; this.#clientId = clientId; this.#scope = scope;