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
StoreProvider uses a render property that describes the widgets to render when it renders.
This works fine when the StoreProvider is invalidated by the store. However if the parent component is invalidated and passes a different property to the nodes in the render property, the components does not re-render.
This codesandbox that demonstrates the issue. Click "Update Messageand notice that the message doesn't change, then click "Invalidate Store" to see that the message is finally updated because theStoreProvider` widget is invalidated by the store.
The text was updated successfully, but these errors were encountered:
Bug
StoreProvider
uses a render property that describes the widgets to render when it renders.This works fine when the
StoreProvider
is invalidated by the store. However if the parent component is invalidated and passes a different property to the nodes in the render property, the components does not re-render.This codesandbox that demonstrates the issue. Click "Update Message
and notice that the message doesn't change, then click "Invalidate Store" to see that the message is finally updated because the
StoreProvider` widget is invalidated by the store.The text was updated successfully, but these errors were encountered: