I'm getting errors due to undefined fibers. Debugger is pointing specifically at:
|
case "update": |
|
updateCount++; |
|
|
|
fiber = fiberById.get(event.fiberId) as MessageFiber; |
Other cases seem to be solving this by first checking getFiberById.has(fiberId) and continuing if not. However, I'm guessing this would create knock-on effects downstream. Not to mention that the missing fiber is probably a symptom of an issue further upstream. Will investigate further with a local / unminified build and see what I can find.
Please let me know if there's any further detail I can provide.
I'm getting errors due to undefined fibers. Debugger is pointing specifically at:
react-render-tracker/src/data/process-events.ts
Lines 203 to 206 in a3794fe
Other cases seem to be solving this by first checking
getFiberById.has(fiberId)and continuing if not. However, I'm guessing this would create knock-on effects downstream. Not to mention that the missing fiber is probably a symptom of an issue further upstream. Will investigate further with a local / unminified build and see what I can find.Please let me know if there's any further detail I can provide.