From 716185115d14b809bdc20af4f80aedd519571856 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Wed, 19 Jan 2022 16:19:39 -0800 Subject: [PATCH] Update Rooms.tsx --- components/Dashboard/Rooms.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/Dashboard/Rooms.tsx b/components/Dashboard/Rooms.tsx index a9b726c..111add7 100644 --- a/components/Dashboard/Rooms.tsx +++ b/components/Dashboard/Rooms.tsx @@ -174,7 +174,8 @@ export default function DashboardRoom() { // render sections for different types const recurring = meRooms.filter( - (room) => room.type == RoomType.recurring + (room) => + room.type == RoomType.recurring && room.status == RoomStatus.empty ); const now = meRooms.filter((room) => room.status == RoomStatus.live); const scheduled = meRooms.filter(