@tanstack/router-core 1.122.0 → 1.123.0

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.
@@ -1099,7 +1099,7 @@ class RouterCore {
1099
1099
  return {
1100
1100
  ...d,
1101
1101
  invalid: true,
1102
- ...d.status === "error" ? { status: "pending", error: void 0 } : {}
1102
+ ...(opts == null ? void 0 : opts.forcePending) || d.status === "error" ? { status: "pending", error: void 0 } : {}
1103
1103
  };
1104
1104
  }
1105
1105
  return d;