From 0ab89adfeaad3359f5f8c2abf77408a7c1d0f26b Mon Sep 17 00:00:00 2001 From: Vadim Date: Tue, 11 Jun 2024 12:13:10 +0300 Subject: [PATCH] style(fix): fix linter errors (#850) --- apps/client/src/app/client.module.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/client/src/app/client.module.ts b/apps/client/src/app/client.module.ts index 443d796a..1f053cd8 100644 --- a/apps/client/src/app/client.module.ts +++ b/apps/client/src/app/client.module.ts @@ -45,9 +45,7 @@ import { AppRootComponent } from './components/root.component'; schemas: [CUSTOM_ELEMENTS_SCHEMA], }) export class AppClientModule { - constructor( - private readonly store: Store, - ) { + constructor(private readonly store: Store) { this.store.dispatch(diagnosticsAction.connect()); } }