Closed
Description
Repro case with a master build: https://codesandbox.io/s/stoic-mcnulty-dhygf?file=/src/App.js:668-703
Expected: we see content after a second.
Actual: fallback never resolves.
This happens in a sequence of:
- Normal update
- which suspends
- Idle update
- which also suspends
- An unrelated normal update immediately followed by a ping (so they're batched)
- here, we decide to stay on fallback, but should've shown the content
If you remove _setVersion(v => v + 1);
on line 44 then the issue goes away.