From ed422edac3de50551eadb791bc993356345d1647 Mon Sep 17 00:00:00 2001 From: Punya Biswal Date: Mon, 29 Aug 2022 07:56:45 -0400 Subject: [PATCH] fix: Remove unused type arg (#1467) --- src/cls.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cls.ts b/src/cls.ts index d45b20704..c5b33323a 100644 --- a/src/cls.ts +++ b/src/cls.ts @@ -174,7 +174,7 @@ export class TraceCLS implements CLS { return this.currentCLS.bindWithCurrentContext(fn); } - patchEmitterToPropagateContext(ee: EventEmitter): void { + patchEmitterToPropagateContext(ee: EventEmitter): void { this.currentCLS.patchEmitterToPropagateContext(ee); } }