From bf7dcf535d9fff38b71ace28caeb7411e0fe9cd4 Mon Sep 17 00:00:00 2001 From: markuczy Date: Thu, 11 Jul 2024 14:30:20 +0200 Subject: [PATCH] refactor: lint --- .../src/lib/services/translation-cache.service.ts | 2 +- .../src/lib/utils/webcomponent-bootstrap.utils.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/angular-accelerator/src/lib/services/translation-cache.service.ts b/libs/angular-accelerator/src/lib/services/translation-cache.service.ts index d0917c51..a796c634 100644 --- a/libs/angular-accelerator/src/lib/services/translation-cache.service.ts +++ b/libs/angular-accelerator/src/lib/services/translation-cache.service.ts @@ -13,7 +13,7 @@ class TranslationCacheTopic extends SyncableTopic> { @Injectable({ providedIn: 'root' }) export class TranslationCacheService implements OnDestroy { - private id: string = '' + private id = '' private translationTopic$ = new TranslationCacheTopic() private translations$ = new BehaviorSubject({}) constructor() { diff --git a/libs/angular-webcomponents/src/lib/utils/webcomponent-bootstrap.utils.ts b/libs/angular-webcomponents/src/lib/utils/webcomponent-bootstrap.utils.ts index 8451a8ca..7a3ec014 100644 --- a/libs/angular-webcomponents/src/lib/utils/webcomponent-bootstrap.utils.ts +++ b/libs/angular-webcomponents/src/lib/utils/webcomponent-bootstrap.utils.ts @@ -1,7 +1,6 @@ import { createCustomElement } from '@angular/elements' import { createApplication, platformBrowser } from '@angular/platform-browser' import { - ApplicationRef, EnvironmentProviders, Injector, NgModuleRef,