hide number of meeting participants

This commit is contained in:
Igor Loskutov
2025-09-17 12:32:04 -04:00
parent 1764c591c4
commit 38906c5d1a
2 changed files with 16 additions and 13 deletions

View File

@@ -128,9 +128,10 @@ function MeetingStatus({ roomName }: { roomName: string }) {
<Text fontSize="xs" color="gray.600" lineHeight={1}>
{title}
</Text>
<Text fontSize="xs" color="gray.500" lineHeight={1}>
{meeting.num_clients} participants
</Text>
{/* num_clients is always 0 at this point. this is not implemented yet. */}
{/*<Text fontSize="xs" color="gray.500" lineHeight={1}>*/}
{/* {meeting.num_clients} participants*/}
{/*</Text>*/}
</VStack>
);
}

View File

@@ -237,16 +237,18 @@ export default function MeetingSelection({
color="gray.600"
flexWrap="wrap"
>
<HStack>
<Icon
as={FaUsers}
boxSize={{ base: "16px", md: "20px" }}
/>
<Text fontWeight="medium">
{meeting.num_clients || 0} participant
{meeting.num_clients !== 1 ? "s" : ""}
</Text>
</HStack>
{/* num_clients is always 0 at this point. this is not implemented yet. */}
{/*<HStack>*/}
{/* <Icon*/}
{/* as={FaUsers}*/}
{/* boxSize={{ base: "16px", md: "20px" }}*/}
{/* />*/}
{/* */}
{/* <Text fontWeight="medium">*/}
{/* {meeting.num_clients || 0} participant*/}
{/* {meeting.num_clients !== 1 ? "s" : ""}*/}
{/* </Text>*/}
{/*</HStack>*/}
<HStack>
<Icon
as={FaClock}