Comments (4)
This patch solves it:
--- a/dist/compiled/react-dom/cjs/react-dom.development.js
+++ b/dist/compiled/react-dom/cjs/react-dom.development.js
@@ -30987,7 +30987,16 @@ function replaySuspendedUnitOfWork(unitOfWork) {
var Component = unitOfWork.type;
var unresolvedProps = unitOfWork.pendingProps;
var resolvedProps = unitOfWork.elementType === Component ? unresolvedProps : resolveDefaultProps(Component, unresolvedProps);
- next = replayFunctionComponent(current, unitOfWork, resolvedProps, Component, workInProgressRootRenderLanes);
+ var componentRender = null;
+ switch (unitOfWork.tag) {
+ case FunctionComponent:
+ componentRender = type;
+ break;
+ case ForwardRef:
+ componentRender = type.render;
+ break;
+ }
+ next = replayFunctionComponent(current, unitOfWork, resolvedProps, componentRender, workInProgressRootRenderLanes);
break;
}
A line like this exists in updateForwardRef
, but doesn't seem to exist in the replay suspense logic.
from react.
@acdlite tagging you because I think the reconciler and suspense is your field of expertise. Happy to help with anything that can help solve this.
from react.
Ah yeah that's a good find. Want to submit a PR with a regression test? :)
from react.
Sure! Might need some help on how to trigger the replaySuspendedUnitOfWork
function. I'll tag you in the PR.
from react.
Related Issues (20)
- [DevTools Bug] Cannot add child "1161" to parent "942" because parent node was not found in the Store. HOT 5
- When a state is update the whole component is getting Re-rendered instead it should Re-render only those element where the updated state is used HOT 1
- Bug: `useEffect()` is called with incorrect context in strict mode HOT 1
- https://www.sec.gov/Archives/edgar/data/1004673/000110465910001432/0001104659-10-001432.txt
- Bug: Unexpected Suspense SSR Component Behavior with useSyncExternalStore in React 18.3.0-next: Rerender and Fallback State Issues
- Bug: State inside custom hook is always undefined, but is present/defined outside.
- High Security Vulnerability found in the dependency Minimist HOT 2
- hahaha react HOT 1
- Bug: HOT 3
- Bug:
- TypeError: Cannot read properties of undefined (reading '_internalRoot') HOT 1
- Bug:
- [DevTools Bug]: copy operations don't work in Chrome HOT 4
- Suggestion: [eslint-plugin-react-hooks] - should not warn/error when RefObject/MutableRefObject passed from outside hook
- Is there any roadmap to enable the detection of iframes in React devtools? HOT 4
- Update react devtools readme - The React Tab Doesn't Show Up - CSP HOT 2
- Bug: Elements in ErrorBoundary are created twice, one of them becomes an orphan
- [eslint-plugin-react-hooks] New rule to enforce lazy initialization for `useState` HOT 2
- Bug: window.location.search is stale value and not synchronized with useLocation().search HOT 4
- Suggest adding Chinese to the new version of the official website HOT 3
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react.