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