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 30e2676 commit 38864c9Copy full SHA for 38864c9
src/router/url/url-matcher.js
@@ -13,7 +13,6 @@ import { propEq } from "../../shared/hof.js";
13
import {
14
hasOwn,
15
isDefined,
16
- isNull,
17
isNullOrUndefined,
18
isString,
19
} from "../../shared/utils.js";
src/services/http/http.js
@@ -1088,7 +1088,7 @@ export function http(
1088
timeoutId = setTimeout(() => timeoutRequest("timeout"), timeout);
1089
} else if (isPromiseLike(timeout)) {
1090
/** @type {Promise} */ (timeout).then(() => {
1091
- timeoutRequest("timeout");
+ timeoutRequest("abort");
1092
});
1093
}
1094
0 commit comments