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
The getForceUpdate(instance) function that ships with React Proxy only updates the component provided to it, and does not update any component below it that returns false from shouldComponentUpdate(). This is especially problematic for React Native where many built-in components like ListView are very optimized, and hot reloading parents seems to have no effects.
The text was updated successfully, but these errors were encountered:
The
getForceUpdate(instance)
function that ships with React Proxy only updates the component provided to it, and does not update any component below it that returnsfalse
fromshouldComponentUpdate()
. This is especially problematic for React Native where many built-in components likeListView
are very optimized, and hot reloading parents seems to have no effects.The text was updated successfully, but these errors were encountered: