Skip to content

Commit

Permalink
chore(lint): linting the app again
Browse files Browse the repository at this point in the history
  • Loading branch information
rolljee committed Aug 28, 2024
1 parent 4943d54 commit b2bd142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kuzzle/event/KuzzleEventEmitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ async function pipeCallback(error: any, ...updated: any[]) {
const corePipes = this.instance.corePipes.get(this.targetEvent);

if (corePipes) {
await Bluebird.map(corePipes, (fn) => fn(...updated));
await Bluebird.map(corePipes, (fn: any) => fn(...updated));
}

for (const element of this.events) {
Expand Down

0 comments on commit b2bd142

Please sign in to comment.