Skip to content

Commit

Permalink
feat(WEB-2070): WEB-2070 lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sairam459 committed Apr 5, 2024
1 parent 40409cd commit 47df68d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/whisp/whisp.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
}

Expand Down

0 comments on commit 47df68d

Please sign in to comment.