From 751375ce3c80b114753a586d320043ad49c2877a Mon Sep 17 00:00:00 2001 From: Roscoe Rubin-Rottenberg <118622417+knotbin@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:07:09 -0400 Subject: [PATCH] Make like animation on web same speed as mobile (#5391) --- src/lib/custom-animations/LikeIcon.web.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/custom-animations/LikeIcon.web.tsx b/src/lib/custom-animations/LikeIcon.web.tsx index ef330bc62c..9a70212fe4 100644 --- a/src/lib/custom-animations/LikeIcon.web.tsx +++ b/src/lib/custom-animations/LikeIcon.web.tsx @@ -10,7 +10,7 @@ import { } from '#/components/icons/Heart2' const animationConfig = { - duration: 400, + duration: 600, easing: 'cubic-bezier(0.4, 0, 0.2, 1)', fill: 'forwards' as FillMode, }