From f91dcf030691b185ebd2ce186f9c295152b50c0e Mon Sep 17 00:00:00 2001 From: kawamataryo Date: Thu, 16 Jan 2025 20:45:22 +0900 Subject: [PATCH] chore: fix time --- src/components/DonationCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DonationCard.tsx b/src/components/DonationCard.tsx index f5f20e9..5a98390 100644 --- a/src/components/DonationCard.tsx +++ b/src/components/DonationCard.tsx @@ -32,7 +32,7 @@ const DonationCard = () => { if (userClosed) return; setIsVisible(true); }; - const timeoutId = setTimeout(showDonationCard, 4000); + const timeoutId = setTimeout(showDonationCard, 6000); return () => clearTimeout(timeoutId); }, [userClosed]);