* Fixed react warning about "hook order changing", when LoadingUIProxy's `normalComp_innermostRenderFunc` set up a situation (when it was called in LoadingUIProxy's first render) where it called `useState` (or the like), to then call the set-value function later and trigger an (unwanted and unnecessary) re-render of the LoadingUIProxy comp. [fixed it by instrumenting the `React.useX` funcs, then "replaying" those calls for any extraneous renders that LoadingUIProxy performs; definitely a hack, but solves it for now; I think I see a better route though which I'll try to implement in the next commit]
ee6870cVenryx14mo ago