From 68307440963a1a038e987fdce19e49cee98d3790 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Mon, 11 Nov 2024 12:53:39 +0000 Subject: [PATCH] Don't adjust reaction time. That was just for testing --- src/useReactions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/useReactions.tsx b/src/useReactions.tsx index 4a09ffbc..c8d3c3b5 100644 --- a/src/useReactions.tsx +++ b/src/useReactions.tsx @@ -62,7 +62,7 @@ interface RaisedHandInfo { time: Date; } -const REACTION_ACTIVE_TIME_MS = 90000; +const REACTION_ACTIVE_TIME_MS = 3000; export const useReactions = (): ReactionsContextType => { const context = useContext(ReactionsContext);