Fixed inconsistent search in emojiboard.

Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura
2021-10-22 17:02:42 +05:30
parent dfe3e4a7bd
commit 198f7a97ee
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ function PeopleDrawer({ roomId }) {
}
<div className="people-drawer__load-more">
{
mList.length !== 0 && mList.length > itemCount && (
mList.length !== 0 && memberList.length > itemCount && (
<Button onClick={loadMorePeople}>View more</Button>
)
}