diff --git a/src/components/common/CustomEmojiPicker.tsx b/src/components/common/CustomEmojiPicker.tsx index bd05dca64..45757ede0 100644 --- a/src/components/common/CustomEmojiPicker.tsx +++ b/src/components/common/CustomEmojiPicker.tsx @@ -201,6 +201,7 @@ const CustomEmojiPicker: FC = ({ .filter((reaction) => !topReactionsSlice.some((topReaction) => isSameReaction(topReaction, reaction))) .slice(0, RECENT_REACTIONS_COUNT); const cleanAvailableReactions = (availableReactions || []) + .filter(({ isInactive }) => !isInactive) .map(({ reaction }) => reaction) .filter((reaction) => { return !topReactionsSlice.some((topReaction) => isSameReaction(topReaction, reaction))