chore: make property readonly

This commit is contained in:
Jacob Overgaard
2023-09-13 10:53:38 +02:00
parent 20c12e6e2c
commit e20667f68e

View File

@@ -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;