From 1a9de3a085d7b3b38ff766d5adafa39248274dda Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Wed, 10 Sep 2025 18:16:04 -0600 Subject: [PATCH] feat: remove restrictive message for non-owners in private rooms - Remove confusing message about room owner permissions - Cleaner UI for all users regardless of ownership status - Users will only see available meetings and join options --- www/app/[roomName]/MeetingSelection.tsx | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/www/app/[roomName]/MeetingSelection.tsx b/www/app/[roomName]/MeetingSelection.tsx index 81adb2da..e3314222 100644 --- a/www/app/[roomName]/MeetingSelection.tsx +++ b/www/app/[roomName]/MeetingSelection.tsx @@ -397,23 +397,6 @@ export default function MeetingSelection({ )} - {/* Message for non-owners of private rooms - only show when auth is not loading */} - {!authLoading && !isOwner && !isSharedRoom && ( - - - Only the room owner can create unscheduled meetings in this - private room. - - - )} );