From 324c5a44a56c77d75f60f0d7199a754c690de4f1 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 6 Nov 2024 09:47:51 -0800 Subject: fix prop names (#6130) --- src/lib/custom-animations/LikeIcon.web.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/custom-animations/LikeIcon.web.tsx') diff --git a/src/lib/custom-animations/LikeIcon.web.tsx b/src/lib/custom-animations/LikeIcon.web.tsx index 79a646e6d..081bec45c 100644 --- a/src/lib/custom-animations/LikeIcon.web.tsx +++ b/src/lib/custom-animations/LikeIcon.web.tsx @@ -41,15 +41,15 @@ const circle2Keyframe = [ export function AnimatedLikeIcon({ isLiked, big, - isToggle, + hasBeenToggled, }: { isLiked: boolean big?: boolean - isToggle: boolean + hasBeenToggled: boolean }) { const t = useTheme() const size = big ? 22 : 18 - const shouldAnimate = !useReducedMotion() && isToggle + const shouldAnimate = !useReducedMotion() && hasBeenToggled const prevIsLiked = React.useRef(isLiked) const likeIconRef = React.useRef(null) -- cgit 1.4.1