Open
Description
- Check if updating to the latest Preact version resolves the issue
Describe the bug
I have a simple app with the following structure:
- App (suspense)
- Foobar (lazy)
- Foo (memo)
- Bar (lazy)
- Foobar (lazy)
I found that in this case, Foo's useEffect() will NOT be executed. (But it does in React 18)
To Reproduce
https://codesandbox.io/p/sandbox/preact-memo-gpmrxk
Expected behavior
Show foobar
Actual behavior
Show bar
Activity