I am wondering if it considered "bad practice" or a "code smell", when having an event that dispatches another event?
One common misconception that I would like to clarify is that subs and events are not functions, even though they may look like them. This misunderstanding sometimes makes you want to fire event from another event. I’m not sure about current version, but in older versions this might’ve introduce slight delays between events. But if it’s not the case and you sure, then it’s alright, like @p-himik said.
As long as you do it via :dispatch or some other effect and not via rf/dispatch or some other function, it's alright.
Nice... then I think I am on the right track. Thanks 🙏