Replies: 1 comment
-
I'm confused, so this isn't a bug? Also why wouldn't you use the config prop instead of setting up css transitions that you're changing per phrase? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
🐛 Bug Report
I got this error and was having a difficult time finding what was causing it, I found out why.
Leaving this here if someone else stumbles upon this.
My mistake was having the timing without a
0
in front :transition: all .20s linear
Changing it to
transition: all 0.20s linear
got rid of the error.Example:
Environment
react-spring
v9.3.0react
v17.0.2Beta Was this translation helpful? Give feedback.
All reactions