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
I got the impression that this should definitely cause a warning (not implemented) but I wonder if we also should consistently drop updates from useInsertionEffect?
The text was updated successfully, but these errors were encountered:
Following up on reactjs/react.dev#4486 (comment) (/cc @acdlite )
React version: 18.0.0-rc.3-next-1159ff619-20220324
Steps To Reproduce
setState
) from withinuseInsertionEffect
Link to code example: https://codesandbox.io/s/naughty-bogdan-boghf6?file=/src/index.js
The current behavior
Update is applied and no warning is issued.
The expected behavior
According to https://github.com/reactjs/reactjs.org/pull/4486/files#diff-a1c8ec10dc40c86b4bbd55ad3f0126835bd45e9aa9e56c846a2e28ad6dd6acffR602
useInsertionEffect
cannot schedule updates. ButsetState
seems to "work". Maybe this is just incidental because it's the first render?I got the impression that this should definitely cause a warning (not implemented) but I wonder if we also should consistently drop updates from
useInsertionEffect
?The text was updated successfully, but these errors were encountered: