diff options
Diffstat (limited to 'src/lib/custom-animations/CountWheel.web.tsx')
-rw-r--r-- | src/lib/custom-animations/CountWheel.web.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/custom-animations/CountWheel.web.tsx b/src/lib/custom-animations/CountWheel.web.tsx index 618dcb1a5..594117bfe 100644 --- a/src/lib/custom-animations/CountWheel.web.tsx +++ b/src/lib/custom-animations/CountWheel.web.tsx @@ -83,7 +83,6 @@ export function CountWheel({ return ( <View> <View - aria-disabled={true} // @ts-expect-error is div ref={countView}> <Text @@ -98,9 +97,9 @@ export function CountWheel({ {formattedCount} </Text> </View> - {shouldAnimate ? ( + {shouldAnimate && (likeCount > 1 || !isLiked) ? ( <View - style={{position: 'absolute'}} + style={{position: 'absolute', opacity: 0}} aria-disabled={true} // @ts-expect-error is div ref={prevCountView}> |