diff --git a/src/components/NoteStats/LikeButton.tsx b/src/components/NoteStats/LikeButton.tsx index c042a90..8d1dec2 100644 --- a/src/components/NoteStats/LikeButton.tsx +++ b/src/components/NoteStats/LikeButton.tsx @@ -36,7 +36,7 @@ export default function LikeButton({ event }: { event: Event }) { if (liking || !pubkey) return setLiking(true) - const timer = setTimeout(() => setLiking(false), 5000) + const timer = setTimeout(() => setLiking(false), 10_000) try { const noteStats = noteStatsMap.get(event.id)