Skip to content

Commit 1fb3749

Browse files
committed
refactor(web): function-name-update
1 parent 29336cb commit 1fb3749

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/context/GraphqlBatcher.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ const executor: AsyncExecutor = async ({ document, variables, extensions }) => {
3838
}
3939
};
4040

41-
const myBatchExec = createBatchingExecutor(executor);
41+
const batchExec = createBatchingExecutor(executor);
4242

4343
const fetcher = async (queries: IQuery[]) => {
4444
const batchdata = await Promise.all(
4545
queries.map(({ document, variables, isDisputeTemplate, chainId }) =>
46-
myBatchExec({ document, variables, extensions: { url: getGraphqlUrl(isDisputeTemplate ?? false, chainId) } })
46+
batchExec({ document, variables, extensions: { url: getGraphqlUrl(isDisputeTemplate ?? false, chainId) } })
4747
)
4848
);
4949

0 commit comments

Comments
 (0)