From e20667f68e4cef1d1fffb372a5ab4e7cada94af7 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Wed, 13 Sep 2023 10:53:38 +0200 Subject: [PATCH] chore: make property readonly --- src/Umbraco.Web.UI.Client/src/shared/auth/auth-flow.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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;