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 f2f0589 commit 18a96dcCopy full SHA for 18a96dc
packages/react-reconciler/src/ReactFiberWorkLoop.js
@@ -2577,6 +2577,10 @@ function unwindUnitOfWork(unitOfWork: Fiber): void {
2577
returnFiber.deletions = null;
2578
}
2579
2580
+ // NOTE: If we re-enable sibling prerendering in some cases, here we
2581
+ // would switch to the normal completion path: check if a sibling
2582
+ // exists, and if so, begin work on it.
2583
+
2584
// Otherwise, return to the parent
2585
// $FlowFixMe[incompatible-type] we bail out when we get a null
2586
incompleteWork = returnFiber;
0 commit comments