feat: remove restrictive message for non-owners in private rooms

- Remove confusing message about room owner permissions
- Cleaner UI for all users regardless of ownership status
- Users will only see available meetings and join options
This commit is contained in:
2025-09-10 18:16:04 -06:00
parent 8cdae8b99b
commit 1a9de3a085

View File

@@ -397,23 +397,6 @@ export default function MeetingSelection({
</Box>
)}
{/* Message for non-owners of private rooms - only show when auth is not loading */}
{!authLoading && !isOwner && !isSharedRoom && (
<Box
width="100%"
bg="gray.50"
border="1px solid"
borderColor="gray.200"
borderRadius="md"
p={4}
mt={6}
>
<Text fontSize="sm" color="gray.600" textAlign="center">
Only the room owner can create unscheduled meetings in this
private room.
</Text>
</Box>
)}
</Flex>
</Flex>
);