@tanstack/router-core 1.169.2 → 1.170.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.
@@ -132,7 +132,7 @@ var RouterCore = class {
132
132
  needsLocationUpdate = true;
133
133
  }
134
134
  if (needsLocationUpdate && this.stores) this.stores.location.set(this.latestLocation);
135
- if (typeof window !== "undefined" && "CSS" in window && typeof window.CSS?.supports === "function") this.isViewTransitionTypesSupported = window.CSS.supports("selector(:active-view-transition-type(a)");
135
+ if (typeof window !== "undefined" && "CSS" in window && typeof window.CSS?.supports === "function") this.isViewTransitionTypesSupported = window.CSS.supports("selector(:active-view-transition-type(a))");
136
136
  };
137
137
  this.updateLatestLocation = () => {
138
138
  this.latestLocation = this.parseLocation(this.history.location, this.latestLocation);