Skip to content

Commit

Permalink
Debounce reaction for longer on web (#3305)
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson authored May 3, 2023
1 parent 492fa67 commit 2031f1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const Reaction = (props: ReactionProps) => {
if (isClicked) {
const timeout = setTimeout(() => {
setIsClicked(false)
}, 200)
}, 5000)

return () => clearTimeout(timeout)
}
Expand Down

0 comments on commit 2031f1a

Please sign in to comment.