@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.
- package/dist/cjs/router.cjs +1 -1
- package/dist/cjs/router.cjs.map +1 -1
- package/dist/esm/router.js +1 -1
- package/dist/esm/router.js.map +1 -1
- package/package.json +1 -1
- package/src/router.ts +2 -1
package/dist/esm/router.js
CHANGED
|
@@ -815,7 +815,7 @@ class RouterCore {
|
|
|
815
815
|
};
|
|
816
816
|
this.startViewTransition = (fn) => {
|
|
817
817
|
const shouldViewTransition = this.shouldViewTransition ?? this.options.defaultViewTransition;
|
|
818
|
-
|
|
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) {
|