diff --git a/app/products/calls/components/reaction_bar.tsx b/app/products/calls/components/reaction_bar.tsx index d4046262bf..667ff7d305 100644 --- a/app/products/calls/components/reaction_bar.tsx +++ b/app/products/calls/components/reaction_bar.tsx @@ -90,14 +90,17 @@ const ReactionBar = ({raisedHand}: Props) => { {raisedHand ? LowerHandText : RaiseHandText} { - predefinedReactions.map(([name, unified]) => ( - sendReaction({name, unified})} - /> - )) + predefinedReactions.map(([name, unified]) => { + const send = () => sendReaction({name, unified}); + return ( + + ); + }) } );