SSR, Reactivity of Signals on onMount
Hey guys, I've got couple of signals in the view, which are strings and I'm sending default values via SSR, then on onMount, I'm changing values of these signals.
If I put console log inside createEffect, I see that values are changed, but it's not being changed in the view.
Also, if I add timeout of signal updates in onMount, for like 200-300ms, I see that values change in the view as well.
How can I make it work, so updating signals in onMount, will update values in the view as well?
If I put console log inside createEffect, I see that values are changed, but it's not being changed in the view.
Also, if I add timeout of signal updates in onMount, for like 200-300ms, I see that values change in the view as well.
How can I make it work, so updating signals in onMount, will update values in the view as well?
