diff --git a/app/containers/ReactionsList/index.tsx b/app/containers/ReactionsList/index.tsx
index ab751de5b9a..153fcd09484 100644
--- a/app/containers/ReactionsList/index.tsx
+++ b/app/containers/ReactionsList/index.tsx
@@ -58,8 +58,8 @@ const ReactionsList = ({ reactions, getCustomEmoji }: IReactionsListProps) => {
if (route.key === 'all') {
return ;
}
- if (route.emoji && route.usernames && route.names) {
- return ;
+ if (route.emoji && route.usernames && route.usernames.length > 0) {
+ return ;
}
return null;
};