mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-17 12:40:28 +03:00
Fixed inconsistent search in emojiboard.
Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
parent
5018df11f1
commit
e6f228b63e
2 changed files with 4 additions and 4 deletions
|
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue