I worked with react-spring elsewhere in my project and realized it was on v9.0.0 and all my toasts stopped working with an odd error saying something like cannot destructure property 'reset' from undefined. I knew it had to be react-spring since I just worked with it directly elsewhere and unknowingly upgraded to v9.0.0. So I checked master over here and noticed that the dependency for this project relies on v8.0.0. A downgrade in my project to react-springv8.0.0 fixed the issue, just noting here for future people.
I worked with
react-spring
elsewhere in my project and realized it was onv9.0.0
and all my toasts stopped working with an odd error saying something likecannot destructure property 'reset' from undefined
. I knew it had to bereact-spring
since I just worked with it directly elsewhere and unknowingly upgraded tov9.0.0
. So I checkedmaster
over here and noticed that the dependency for this project relies onv8.0.0
. A downgrade in my project toreact-spring
v8.0.0
fixed the issue, just noting here for future people.