diff --git a/components/RoomCard.tsx b/components/RoomCard.tsx
index 1810072..0e0d692 100644
--- a/components/RoomCard.tsx
+++ b/components/RoomCard.tsx
@@ -1,5 +1,5 @@
import { BsThreeDots } from "react-icons/bs";
-import { FaBell, FaClock, FaLink } from "react-icons/fa";
+import { FaBell, FaClock, FaLink, FaPlus } from "react-icons/fa";
import { IoTimer } from "react-icons/io5";
import Room, { RoomStatus } from "../models/room";
import RoomTypeTag from "./RoomTypeTag";
@@ -188,18 +188,18 @@ export default function RoomCard(props: IRoomCardProps) {
return ;
}
+ async function handleUpdateRoom(e) {
+ e.preventDefault();
+
+ console.log("going to update room");
+ }
+
const RoomOptionsMenu = (
@@ -257,7 +257,7 @@ export default function RoomCard(props: IRoomCardProps) {
{/* room attachments */}
- {props.room.attachments && props.room.attachments.length > 0 && (
+ {props.room.attachments && props.room.attachments.length > 0 ? (
+ ) : (
+
)}