the issue is that in development react "validates" the elements it gets immediately, walking the entire structure and thus forcing lazy seqs
in production that may be delayed since it doesn't validate
so the "work" potentially happens at different times. it is known to cause problems if you use any kind of bindings
Thheller: