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
I'm trying to follow the react example in the doc and added componentWillLeave along with componentWillEnter
Everything works great, however after the component leaves I get the following in the console:
Warning: setState(...): Can only update a mounted or mounting component. This usually means you called setState() on an unmounted component. This is a no-op. Please check the code for the MotionValue component.
The text was updated successfully, but these errors were encountered:
Could this be due to the MotionValue component getting unmounted while in the middle of a setState call? Similar to this issue in React Motion. I can submit a PR with a similar fix if you think it's the same @InventingWithMonster.
I'm trying to follow the react example in the doc and added
componentWillLeave
along withcomponentWillEnter
Everything works great, however after the component leaves I get the following in the console:
Warning: setState(...): Can only update a mounted or mounting component. This usually means you called setState() on an unmounted component. This is a no-op. Please check the code for the MotionValue component.
The text was updated successfully, but these errors were encountered: