From 07065803fc9b5989ff7e597d7427f0782186c0d1 Mon Sep 17 00:00:00 2001 From: iamkiddy Date: Thu, 4 Dec 2025 18:39:27 +0000 Subject: [PATCH] Remove meeting link display from user appointment detail page to streamline the interface. Update instructions for joining meetings to enhance clarity and focus on essential information. --- app/(user)/user/appointments/[id]/page.tsx | 42 +--------------------- 1 file changed, 1 insertion(+), 41 deletions(-) diff --git a/app/(user)/user/appointments/[id]/page.tsx b/app/(user)/user/appointments/[id]/page.tsx index d93b1d4..8aef9ac 100644 --- a/app/(user)/user/appointments/[id]/page.tsx +++ b/app/(user)/user/appointments/[id]/page.tsx @@ -14,7 +14,6 @@ import { Phone as PhoneIcon, MessageSquare, CheckCircle2, - ExternalLink, Copy, } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; @@ -465,45 +464,6 @@ export default function UserAppointmentDetailPage() {
-
-

- Meeting Link -

-
- {appointment.can_join_as_participant ? ( - <> - - {appointment.participant_join_url} - - - - - - ) : ( - <> -
- {appointment.participant_join_url} -
- - - )} -
-
{appointment.can_join_as_participant !== undefined && (
@@ -531,7 +491,7 @@ export default function UserAppointmentDetailPage() { How to Access:

- Click the "Join Now" button below or use the meeting link above when the meeting becomes available. The meeting will be accessible shortly before the scheduled start time. + Click the "Join Now" button below when the meeting becomes available. The meeting will be accessible shortly before the scheduled start time.

-- 2.39.5