diff --git a/ts/components/conversation/ReactionViewer.tsx b/ts/components/conversation/ReactionViewer.tsx index 5bdd41a3c..d288656cc 100644 --- a/ts/components/conversation/ReactionViewer.tsx +++ b/ts/components/conversation/ReactionViewer.tsx @@ -61,25 +61,26 @@ export const ReactionViewer = React.forwardRef(
{emojis .filter(e => Boolean(grouped[e])) - .map((e, index) => { - const re = grouped[e]; + .map((emoji, index) => { + const re = grouped[emoji]; const maybeFocusRef = index === 0 ? focusRef : undefined; return (