You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.development.js
+14-12
Original file line number
Diff line number
Diff line change
@@ -22045,7 +22045,7 @@
22045
22045
anim.cancel();
22046
22046
}
22047
22047
}
22048
-
function customizeViewTransitionError(error) {
22048
+
function customizeViewTransitionError(error, ignoreAbort) {
22049
22049
if ("object" === typeof error && null !== error)
22050
22050
switch (error.name) {
22051
22051
case "TimeoutError":
@@ -22054,10 +22054,12 @@
22054
22054
{ cause: error }
22055
22055
);
22056
22056
case "AbortError":
22057
-
return Error(
22058
-
"A ViewTransition was aborted early. This might be because you have other View Transition libraries on the page and only one can run at a time. To avoid this, use only React's built-in <ViewTransition> to coordinate.",
22059
-
{ cause: error }
22060
-
);
22057
+
return ignoreAbort
22058
+
? null
22059
+
: Error(
22060
+
"A ViewTransition was aborted early. This might be because you have other View Transition libraries on the page and only one can run at a time. To avoid this, use only React's built-in <ViewTransition> to coordinate.",
22061
+
{ cause: error }
22062
+
);
22061
22063
case "InvalidStateError":
22062
22064
if (
22063
22065
"View transition was skipped because document visibility state is hidden." ===
@@ -22134,7 +22136,7 @@
22134
22136
ownerDocument.__reactViewTransition = transition;
22135
22137
transition.ready.then(spawnedWorkCallback, function (error) {
Copy file name to clipboardExpand all lines: packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.development.js
+14-12
Original file line number
Diff line number
Diff line change
@@ -22053,7 +22053,7 @@
22053
22053
anim.cancel();
22054
22054
}
22055
22055
}
22056
-
function customizeViewTransitionError(error) {
22056
+
function customizeViewTransitionError(error, ignoreAbort) {
22057
22057
if ("object" === typeof error && null !== error)
22058
22058
switch (error.name) {
22059
22059
case "TimeoutError":
@@ -22062,10 +22062,12 @@
22062
22062
{ cause: error }
22063
22063
);
22064
22064
case "AbortError":
22065
-
return Error(
22066
-
"A ViewTransition was aborted early. This might be because you have other View Transition libraries on the page and only one can run at a time. To avoid this, use only React's built-in <ViewTransition> to coordinate.",
22067
-
{ cause: error }
22068
-
);
22065
+
return ignoreAbort
22066
+
? null
22067
+
: Error(
22068
+
"A ViewTransition was aborted early. This might be because you have other View Transition libraries on the page and only one can run at a time. To avoid this, use only React's built-in <ViewTransition> to coordinate.",
22069
+
{ cause: error }
22070
+
);
22069
22071
case "InvalidStateError":
22070
22072
if (
22071
22073
"View transition was skipped because document visibility state is hidden." ===
@@ -22142,7 +22144,7 @@
22142
22144
ownerDocument.__reactViewTransition = transition;
22143
22145
transition.ready.then(spawnedWorkCallback, function (error) {
Copy file name to clipboardExpand all lines: packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -9600,5 +9600,5 @@
9600
9600
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
Copy file name to clipboardExpand all lines: packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -6351,4 +6351,4 @@ exports.renderToString = function (children, options) {
6351
6351
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
Copy file name to clipboardExpand all lines: packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.development.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -9600,5 +9600,5 @@
9600
9600
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
Copy file name to clipboardExpand all lines: packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.production.js
+1-1
Original file line number
Diff line number
Diff line change
@@ -6445,4 +6445,4 @@ exports.renderToString = function (children, options) {
6445
6445
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
0 commit comments