@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.
@@ -526,7 +526,12 @@ class Router {
526
526
  if (redirects.isResolvedRedirect(err)) {
527
527
  redirect = err;
528
528
  if (!this.isServer) {
529
- this.navigate({ ...err, replace: true, __isRedirect: true });
529
+ this.navigate({
530
+ ...err,
531
+ replace: true,
532
+ __isRedirect: true,
533
+ ignoreBlocker: true
534
+ });
530
535
  }
531
536
  } else if (notFound.isNotFound(err)) {
532
537
  notFound$1 = err;