diff --git a/packages/web/src/components/notification/Notification/components/Reaction/Reaction.tsx b/packages/web/src/components/notification/Notification/components/Reaction/Reaction.tsx index 63bff35a9a1..c89836e660f 100644 --- a/packages/web/src/components/notification/Notification/components/Reaction/Reaction.tsx +++ b/packages/web/src/components/notification/Notification/components/Reaction/Reaction.tsx @@ -65,7 +65,7 @@ export const Reaction = (props: ReactionProps) => { if (isClicked) { const timeout = setTimeout(() => { setIsClicked(false) - }, 200) + }, 5000) return () => clearTimeout(timeout) }