do render, effect, cleanup have a stable order?

im seeing an unstable order of renders, effects, and cleanups in snack
im wondering if this is react spec, something to do with react-native, or expo? or simply snack’s logging is not stable.

thanks

I would expect you are just seeing an artifact of how logging is handled. Each log message needs to traverse the network before it can be displayed, and it is possible that a message that was dispatched later might arrive earlier.

1 Like

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.