fix: lost in canvas button animation (#793)

This commit is contained in:
Guy Ben-Aharon
2025-07-27 17:34:48 +03:00
committed by GitHub
parent 386e40a0bf
commit a93ec2cab9

View File

@@ -13,7 +13,7 @@ export const ShowAllButton: React.FC<ShowAllButtonProps> = () => {
useEffect(() => {
const timer = setTimeout(() => {
setVisible(true);
}, 0);
}, 300);
return () => clearTimeout(timer);
}, []);