You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@WreewanMorhee It's nice to find tricky things that they should work properly. Thanks for the error, we will add it as failing test and try to correct it.
I imagine that happens something with the order of instructions, like:
CC get number as 0
CC subscribes to number property
AA get number as 0
CC update the property (component AA is not subscribed yet to number)
All subscribed components to number property are rerendered.
After researching I see that replacing the current store subscription implementation to useSyncExternalStore it should fix this. So we will prioritize changing the subscription system, apart from the fact that it may further reduce the bundle size of the package 😊
teaful: 0.10.0
node: v15.14.0
npm : 7.7.6
works well works fine
BUT
if I put AA and CC into conditional render and other code just stay the same:
AA cannot get new number anymore
WHY !?
The text was updated successfully, but these errors were encountered: