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