@tanstack/react-router 1.77.0 → 1.77.2
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 +3 -1
- package/dist/cjs/router.cjs.map +1 -1
- package/dist/cjs/router.d.cts +5 -5
- package/dist/esm/router.d.ts +5 -5
- package/dist/esm/router.js +3 -1
- package/dist/esm/router.js.map +1 -1
- package/package.json +1 -1
- package/src/router.ts +9 -6
package/dist/cjs/router.cjs
CHANGED
|
@@ -1155,7 +1155,9 @@ class Router {
|
|
|
1155
1155
|
this.__store.setState((s) => {
|
|
1156
1156
|
return {
|
|
1157
1157
|
...s,
|
|
1158
|
-
cachedMatches: s.cachedMatches.filter(
|
|
1158
|
+
cachedMatches: s.cachedMatches.filter(
|
|
1159
|
+
(m) => !filter(m)
|
|
1160
|
+
)
|
|
1159
1161
|
};
|
|
1160
1162
|
});
|
|
1161
1163
|
} else {
|