@tanstack/solid-router 1.112.9 → 1.112.10

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.
@@ -931,8 +931,10 @@ class Router {
931
931
  updateMatch(matchId, (prev) => ({
932
932
  ...prev,
933
933
  loadPromise: createControlledPromise(() => {
934
- var _a2;
935
- (_a2 = prev.loadPromise) == null ? void 0 : _a2.resolve();
934
+ var _a2, _b2;
935
+ if (((_a2 = prev.loadPromise) == null ? void 0 : _a2.status) !== "resolved") {
936
+ (_b2 = prev.loadPromise) == null ? void 0 : _b2.resolve();
937
+ }
936
938
  }),
937
939
  beforeLoadPromise: createControlledPromise()
938
940
  }));