diff --git a/src/components/miscellaneous/reactions/EmojiItem.tsx b/src/components/miscellaneous/reactions/EmojiItem.tsx
index 377a8dfa..abe9d535 100644
--- a/src/components/miscellaneous/reactions/EmojiItem.tsx
+++ b/src/components/miscellaneous/reactions/EmojiItem.tsx
@@ -67,8 +67,8 @@ export const EmojiItem = ({ data, emoji, content_type }: EmojiItemProps) => {
return (
);
diff --git a/src/components/miscellaneous/reactions/EmojiPickHandler.tsx b/src/components/miscellaneous/reactions/EmojiPickHandler.tsx
index 6ec419a4..ad59d4fa 100644
--- a/src/components/miscellaneous/reactions/EmojiPickHandler.tsx
+++ b/src/components/miscellaneous/reactions/EmojiPickHandler.tsx
@@ -58,7 +58,7 @@ export const EmojiPickerHandler = ({ data, content_type }: ReactionHandlerProps)
return (
diff --git a/src/components/miscellaneous/reactions/EmojiShowAll.tsx b/src/components/miscellaneous/reactions/EmojiShowAll.tsx
index bee6c116..f5c13f57 100644
--- a/src/components/miscellaneous/reactions/EmojiShowAll.tsx
+++ b/src/components/miscellaneous/reactions/EmojiShowAll.tsx
@@ -14,7 +14,6 @@ export const EmojiShowAll = ({ data, content_type }: ReactionHandlerProps) => {
const closeDialog = () => setOpen(false);
const emojiCollections: Record = {};
-
data?.reactions?.forEach((r) => {
emojiCollections[r.emoji] = (emojiCollections[r.emoji] || 0) + 1;
});
@@ -29,7 +28,7 @@ export const EmojiShowAll = ({ data, content_type }: ReactionHandlerProps) => {
return (