Fixed animation of love heart bump

Resetting the isClicked state immediately would cancel the animation
This commit is contained in:
Fabien O'Carroll 2024-09-06 13:19:03 +07:00 committed by Fabien 'egg' O'Carroll
parent 2749296fea
commit 7ee15044e9

View File

@ -149,9 +149,6 @@ const FeedItemStats: React.FC<{
setIsLiked(!isLiked);
setIsClicked(false); // Reset the animation class after request completed
// Call the requested `onLikeClick`
onLikeClick();
setTimeout(() => setIsClicked(false), 300);
};