@tanstack/react-router 1.52.3 → 1.52.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/router.cjs +1 -4
- package/dist/cjs/router.cjs.map +1 -1
- package/dist/esm/router.js +1 -4
- package/dist/esm/router.js.map +1 -1
- package/package.json +1 -1
- package/src/router.ts +1 -5
package/package.json
CHANGED
package/src/router.ts
CHANGED
|
@@ -1643,11 +1643,6 @@ export class Router<
|
|
|
1643
1643
|
load = async (): Promise<void> => {
|
|
1644
1644
|
this.latestLocation = this.parseLocation(this.latestLocation)
|
|
1645
1645
|
|
|
1646
|
-
this.__store.setState((s) => ({
|
|
1647
|
-
...s,
|
|
1648
|
-
loadedAt: Date.now(),
|
|
1649
|
-
}))
|
|
1650
|
-
|
|
1651
1646
|
let redirect: ResolvedRedirect | undefined
|
|
1652
1647
|
let notFound: NotFoundError | undefined
|
|
1653
1648
|
|
|
@@ -1738,6 +1733,7 @@ export class Router<
|
|
|
1738
1733
|
return {
|
|
1739
1734
|
...s,
|
|
1740
1735
|
isLoading: false,
|
|
1736
|
+
loadedAt: Date.now(),
|
|
1741
1737
|
matches: newMatches,
|
|
1742
1738
|
pendingMatches: undefined,
|
|
1743
1739
|
cachedMatches: [
|