We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae520be commit 08f1fb4Copy full SHA for 08f1fb4
1 file changed
client/src/api/client/pendingRequestsMiddleware.ts
@@ -20,8 +20,7 @@ export const pendingRequestsMiddleware: Middleware = {
20
const shared = getPendingAbortSignal();
21
// Combine with any signal the caller may have set so we don't silently
22
// drop their cancellation semantics.
23
- const signal =
24
- typeof AbortSignal.any === "function" ? AbortSignal.any([request.signal, shared]) : shared;
+ const signal = typeof AbortSignal.any === "function" ? AbortSignal.any([request.signal, shared]) : shared;
25
return new Request(request, { signal });
26
},
27
};
0 commit comments