software-mansion / react-native-reanimated

React Native's Animated library reimplemented
https://docs.swmansion.com/react-native-reanimated/
MIT License
8.61k stars 1.27k forks source link

Make animation RollInLeft work with modifers #6039

Closed Latropos closed 1 month ago

Latropos commented 1 month ago

Summary

There was a typo that made our entering animation RollInLeft ignorant to modifiers:

-   { translateX: delayFunction(delay, animation(0), config) },
+   { translateX: delayFunction(delay, animation(0, config)) },

Test plan