We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1657f1 commit 9cb3f86Copy full SHA for 9cb3f86
packages/react-reconciler/src/ReactFiberWorkLoop.js
@@ -2645,6 +2645,10 @@ function unwindUnitOfWork(unitOfWork: Fiber): void {
2645
returnFiber.deletions = null;
2646
}
2647
2648
+ // NOTE: If we re-enable sibling prerendering in some cases, here we
2649
+ // would switch to the normal completion path: check if a sibling
2650
+ // exists, and if so, begin work on it.
2651
+
2652
// Otherwise, return to the parent
2653
// $FlowFixMe[incompatible-type] we bail out when we get a null
2654
incompleteWork = returnFiber;
0 commit comments