From 47df68d00300c238ddc84a7a388e5fc09f611ab5 Mon Sep 17 00:00:00 2001 From: Sairam Charan Date: Fri, 5 Apr 2024 17:33:50 +0530 Subject: [PATCH] feat(WEB-2070): WEB-2070 lint fixes --- src/whisp/whisp.resolver.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/whisp/whisp.resolver.ts b/src/whisp/whisp.resolver.ts index 7165d57d8..e96dfdd59 100644 --- a/src/whisp/whisp.resolver.ts +++ b/src/whisp/whisp.resolver.ts @@ -33,9 +33,9 @@ export class WhispResolver { @Inject('PUB_SUB') private pubSub: PubSubEngine, ) { this.distributionService.whispSubject.subscribe((whisp) => { - setTimeout(()=>{ + setTimeout(() => { pubSub.publish('whispAdded', { whispAdded: whisp }); - }, 1000) + }, 1000); }); }