From 02a9502c48843e28a8af18067356aaeb6aba8e72 Mon Sep 17 00:00:00 2001 From: William Wolff Date: Fri, 26 Jul 2024 18:37:43 +0200 Subject: [PATCH] fix: remove redundant, uninitialized logger from TypeormService --- .../cardano-services/src/util/TypeormService/TypeormService.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/cardano-services/src/util/TypeormService/TypeormService.ts b/packages/cardano-services/src/util/TypeormService/TypeormService.ts index 52f7daede54..4993cafda2f 100644 --- a/packages/cardano-services/src/util/TypeormService/TypeormService.ts +++ b/packages/cardano-services/src/util/TypeormService/TypeormService.ts @@ -14,7 +14,6 @@ interface TypeormServiceDependencies { export abstract class TypeormService extends RunnableModule { #entities: Function[]; #connectionConfig$: Observable; - logger: Logger; protected dataSource$ = new BehaviorSubject(null); #subscription: Subscription | undefined;