Suppose you have an event handler :a that only returns {:dispatch [:b]}, and some event handler :b.
Then, if you dispatch :a multiple times, the trace panel of re-frame-trace would sometimes change the order of :a and :b.
It happens about 1 time in 50-100, but still can be pretty confusing when it does happen.
Suppose you have an event handler
:a
that only returns{:dispatch [:b]}
, and some event handler:b
. Then, if you dispatch:a
multiple times, the trace panel ofre-frame-trace
would sometimes change the order of:a
and:b
. It happens about 1 time in 50-100, but still can be pretty confusing when it does happen.