Skip to content

Commit

Permalink
fix: explicit undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
maartyman committed Jan 15, 2025
1 parent a9884ee commit 007bb9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/dev-tools/lib/DevTools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ export function getMockMediatorExpressionEvaluatorFactory(
): MediatorExpressionEvaluatorFactory {
return <any>{
async mediate(arg: any) {
return getMockEEFactory(args).run(arg);
// eslint-disable-next-line unicorn/no-useless-undefined
return getMockEEFactory(args).run(arg, undefined);
},
};
}
Expand Down

0 comments on commit 007bb9e

Please sign in to comment.