Ensure drawer doesn't appear in call room

This commit is contained in:
Gigiaj 2025-05-11 19:11:21 -05:00
parent 7043376383
commit af455a5fe3

View file

@ -67,7 +67,7 @@ export function Room() {
</Box> </Box>
</Box> </Box>
)} )}
{screenSize === ScreenSize.Desktop && isDrawer && ( {screenSize === ScreenSize.Desktop && !room.isCallRoom() && isDrawer && (
<> <>
<Line variant="Background" direction="Vertical" size="300" /> <Line variant="Background" direction="Vertical" size="300" />
<MembersDrawer key={room.roomId} room={room} members={members} /> <MembersDrawer key={room.roomId} room={room} members={members} />