diff --git a/src/assets/reaction-thumbs.png b/src/assets/reaction-thumbs.png index 5908b40b1..1ad8de989 100644 Binary files a/src/assets/reaction-thumbs.png and b/src/assets/reaction-thumbs.png differ diff --git a/src/components/middle/message/ReactionSelector.tsx b/src/components/middle/message/ReactionSelector.tsx index b6d61ea0b..355e534b2 100644 --- a/src/components/middle/message/ReactionSelector.tsx +++ b/src/components/middle/message/ReactionSelector.tsx @@ -55,12 +55,13 @@ const ReactionSelector: FC = ({
- {availableReactions?.map((reaction) => { + {availableReactions?.map((reaction, i) => { if (reaction.isInactive || (!isPrivate && (!enabledReactions || !enabledReactions.includes(reaction.reaction)))) return undefined; return ( void; }; const cn = createClassNameBuilder('ReactionSelectorReaction'); -const ReactionSelectorReaction: FC = ({ reaction, onSendReaction, isReady }) => { +const ReactionSelectorReaction: FC = ({ reaction, previewIndex, onSendReaction, isReady }) => { // eslint-disable-next-line no-null/no-null const containerRef = useRef(null); @@ -56,9 +57,10 @@ const ReactionSelectorReaction: FC = ({ reaction, onSendReaction, isRe
)} {shouldRenderAnimated && (