diff options
Diffstat (limited to 'src/lib/custom-animations/CountWheel.tsx')
-rw-r--r-- | src/lib/custom-animations/CountWheel.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/custom-animations/CountWheel.tsx b/src/lib/custom-animations/CountWheel.tsx index dfa697911..1a8676712 100644 --- a/src/lib/custom-animations/CountWheel.tsx +++ b/src/lib/custom-animations/CountWheel.tsx @@ -151,12 +151,12 @@ export function CountWheel({ {formattedCount} </Text> </Animated.View> - {shouldAnimate ? ( + {shouldAnimate && (likeCount > 1 || !isLiked) ? ( <Animated.View entering={exitingAnimation} // Add 2 to the key so there are never duplicates key={key + 2} - style={[a.absolute, {width: 50}]} + style={[a.absolute, {width: 50, opacity: 0}]} aria-disabled={true}> <Text style={[ |