From a93ec2cab906d0e4431d8d1668adcf2dbfc3c80f Mon Sep 17 00:00:00 2001 From: Guy Ben-Aharon Date: Sun, 27 Jul 2025 17:34:48 +0300 Subject: [PATCH] fix: lost in canvas button animation (#793) --- src/pages/editor-page/canvas/show-all-button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/editor-page/canvas/show-all-button.tsx b/src/pages/editor-page/canvas/show-all-button.tsx index 9a2e9d92..898d2f8b 100644 --- a/src/pages/editor-page/canvas/show-all-button.tsx +++ b/src/pages/editor-page/canvas/show-all-button.tsx @@ -13,7 +13,7 @@ export const ShowAllButton: React.FC = () => { useEffect(() => { const timer = setTimeout(() => { setVisible(true); - }, 0); + }, 300); return () => clearTimeout(timer); }, []);