We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a521d69 commit 7187e32Copy full SHA for 7187e32
src/execution/PromiseCanceller.ts
@@ -35,9 +35,7 @@ export class PromiseCanceller {
35
}
36
37
const { promise, resolve, reject } = promiseWithResolvers<T>();
38
- const abort = () => {
39
- reject(this.abortSignal.reason);
40
- };
+ const abort = () => reject(this.abortSignal.reason);
41
this._aborts.add(abort);
42
originalPromise.then(
43
(resolved) => {
0 commit comments