Skip to content

Commit

Permalink
chore: fix time
Browse files Browse the repository at this point in the history
  • Loading branch information
kawamataryo committed Jan 16, 2025
1 parent 7063d62 commit f91dcf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DonationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down

0 comments on commit f91dcf0

Please sign in to comment.