Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Feb 6, 2025
1 parent 00da557 commit 7fbe763
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/fusion-runtime/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,10 @@ export function getOnSubgraphExecute({
subgraphExecutorMap.set(subgraphName, executor);
}
if (batch) {
executor = getBatchingExecutor(executionRequest.context || subgraphExecutorMap, executor);
executor = getBatchingExecutor(
executionRequest.context || subgraphExecutorMap,
executor,
);
}
return executor(executionRequest);
};
Expand Down

0 comments on commit 7fbe763

Please sign in to comment.