@tanstack/react-router 1.57.10 → 1.57.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/react-router",
3
- "version": "1.57.10",
3
+ "version": "1.57.12",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
package/src/router.ts CHANGED
@@ -1767,7 +1767,12 @@ export class Router<
1767
1767
  if (isResolvedRedirect(err)) {
1768
1768
  redirect = err
1769
1769
  if (!this.isServer) {
1770
- this.navigate({ ...err, replace: true, __isRedirect: true })
1770
+ this.navigate({
1771
+ ...err,
1772
+ replace: true,
1773
+ __isRedirect: true,
1774
+ ignoreBlocker: true,
1775
+ })
1771
1776
  }
1772
1777
  } else if (isNotFound(err)) {
1773
1778
  notFound = err