@tanstack/router-core 1.157.12 → 1.157.13

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.
@@ -817,7 +817,7 @@ class RouterCore {
817
817
  };
818
818
  this.startViewTransition = (fn) => {
819
819
  const shouldViewTransition = this.shouldViewTransition ?? this.options.defaultViewTransition;
820
- delete this.shouldViewTransition;
820
+ this.shouldViewTransition = void 0;
821
821
  if (shouldViewTransition && typeof document !== "undefined" && "startViewTransition" in document && typeof document.startViewTransition === "function") {
822
822
  let startViewTransitionParams;
823
823
  if (typeof shouldViewTransition === "object" && this.isViewTransitionTypesSupported) {