Skip to content

Commit be2348a

Browse files
committed
fix(api): remove unused destructured variable in abortAllOperations
1 parent a38e8ea commit be2348a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/api/src/routes/subgraphs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ const MAX_CONCURRENT_OPERATIONS = 2;
294294
export const activeAbortControllers = new Map<string, AbortController>();
295295

296296
export function abortAllOperations(reason: string): void {
297-
for (const [name, controller] of activeAbortControllers) {
297+
for (const [, controller] of activeAbortControllers) {
298298
controller.abort(reason);
299299
}
300300
}

0 commit comments

Comments
 (0)