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
After running the codemod, willUpdate(stateChanges, propChanges) converted to UNSAFE_componentWillUpdate(stateChanges, propChanges). From the React docs it looks like propChanges should be the first argument to this method, followed by stateChanges, so it would be expected to look like UNSAFE_componentWillUpdate(propChanges, stateChanges).
The text was updated successfully, but these errors were encountered:
After running the codemod,
willUpdate(stateChanges, propChanges)
converted toUNSAFE_componentWillUpdate(stateChanges, propChanges)
. From the React docs it looks likepropChanges
should be the first argument to this method, followed bystateChanges
, so it would be expected to look likeUNSAFE_componentWillUpdate(propChanges, stateChanges)
.The text was updated successfully, but these errors were encountered: