diff --git a/src/app/(protected)/profile/page.tsx b/src/app/(protected)/profile/page.tsx index a05caa93..5deb6346 100644 --- a/src/app/(protected)/profile/page.tsx +++ b/src/app/(protected)/profile/page.tsx @@ -113,8 +113,9 @@ export default function Profile() { const [showResumeModal, setShowResumeModal] = useState(false); const [resumeFile, setResumeFile] = useState(null); - // Feature flag check for HelpDesk + // Feature flag checks const { data: helpDeskFlag } = useFlagState("HelpDesk"); + const { data: roomReservationFlag } = useFlagState("RoomReservation"); // Check if user is an organizer (role > 0) const userRole = getUserRole(token); @@ -502,16 +503,18 @@ export default function Profile() { Manage Team - + {roomReservationFlag?.isEnabled && ( + + )} ) : ( <>