{filteredCollaborators.length === 0 && (
{t("userList.search.empty")}
)}
{t("userList.hint.text")}
{filteredCollaborators.map(([clientId, collaborator]) =>
renderCollaborator({
actionManager,
collaborator,
clientId,
withName: true,
isBeingFollowed: collaborator.socketId === userToFollow,
}),
)}