cleaning up tabs and such
This commit is contained in:
@@ -31,7 +31,6 @@ import { getTime } from "../../helpers/dateTime";
|
||||
enum RoomTypeFilter {
|
||||
team = "team",
|
||||
me = "me",
|
||||
live = "live",
|
||||
archived = "archived",
|
||||
}
|
||||
|
||||
@@ -154,7 +153,6 @@ export default function DashboardRoom() {
|
||||
room.members.includes(currUser.uid) && room.status != RoomStatus.archived
|
||||
);
|
||||
|
||||
const liveRooms = allRooms.filter((room) => room.status == RoomStatus.live);
|
||||
const archivedRooms = allRooms.filter(
|
||||
(room) => room.status == RoomStatus.archived
|
||||
);
|
||||
@@ -367,18 +365,6 @@ export default function DashboardRoom() {
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
case RoomTypeFilter.live:
|
||||
return liveRooms.map((room) => {
|
||||
// if the room is
|
||||
return (
|
||||
<RoomCard
|
||||
key={room.id}
|
||||
room={room}
|
||||
updateRoomHandler={handleUpdateRoom}
|
||||
/>
|
||||
);
|
||||
});
|
||||
case RoomTypeFilter.archived:
|
||||
return archivedRooms.map((room) => {
|
||||
// if the room is
|
||||
@@ -485,12 +471,6 @@ export default function DashboardRoom() {
|
||||
{teamRooms.length}
|
||||
</span>
|
||||
</Radio.Button>
|
||||
<Radio.Button value={RoomTypeFilter.live}>
|
||||
{RoomTypeFilter.live}{" "}
|
||||
<span className="text-xs text-orange-500">
|
||||
{liveRooms.length > 0 ? liveRooms.length : ""}
|
||||
</span>
|
||||
</Radio.Button>
|
||||
<Radio.Button value={RoomTypeFilter.archived}>
|
||||
{RoomTypeFilter.archived}{" "}
|
||||
<span className="text-xs text-orange-500">
|
||||
|
||||
Reference in New Issue
Block a user