From 14e813483a875eb49bc1f5ce6217d4e9bdf9508f Mon Sep 17 00:00:00 2001 From: jhj2713 Date: Wed, 14 Aug 2024 16:59:28 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20filp=20=EC=8B=9C=EA=B0=84=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/features/CasperCustom/CasperCustomFinishing.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/features/CasperCustom/CasperCustomFinishing.tsx b/client/src/features/CasperCustom/CasperCustomFinishing.tsx index a5befcba..0ae67a3c 100644 --- a/client/src/features/CasperCustom/CasperCustomFinishing.tsx +++ b/client/src/features/CasperCustom/CasperCustomFinishing.tsx @@ -29,11 +29,11 @@ export function CasperCustomFinishing({ navigateNextStep }: CasperCustomFinishin const flipTimer = setTimeout(() => { setIsFlipped(true); - }, 3000); + }, 2000); const navigateTimer = setTimeout(() => { navigateNextStep(); - }, 6000); + }, 4000); return () => { clearTimeout(flipTimer);