diff --git a/packages/status-react/src/components/reaction-popover/index.tsx b/packages/status-react/src/components/reaction-popover/index.tsx index c7c71da3..ed71b140 100644 --- a/packages/status-react/src/components/reaction-popover/index.tsx +++ b/packages/status-react/src/components/reaction-popover/index.tsx @@ -48,13 +48,13 @@ export const ReactionPopover = (props: Props) => { {children} - {Object.entries(reactions).map(([reaction, value]) => { - const emoji = emojis[reaction as Reaction] + {Object.entries(emojis).map(([type, emoji]) => { + const reaction = reactions[type] return (