We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4385ef commit 6872811Copy full SHA for 6872811
src/components/common/AnimatedNumber.tsx
@@ -99,10 +99,10 @@ const AnimatedDigit = (props: AnimatedDigitProps): React.ReactElement => {
99
const styles = getStyles(useTheme())
100
101
if (!isIntegerDigit(digit)) {
102
- animY.value = withTiming(0, { duration: animationDuration, easing })
+ // animY.value = withTiming(0, { duration: animationDuration, easing })
103
} else {
104
const height = -1 * (numberHeight * Number(digit))
105
- animY.value = withTiming(height, { duration: animationDuration, easing })
+ // animY.value = withTiming(height, { duration: animationDuration, easing })
106
}
107
108
const animStyle = useAnimatedStyle(() => {
0 commit comments