From 2a3fc6ad4dc301f196ddeaad89b70e9a0fab6504 Mon Sep 17 00:00:00 2001
From: iamkiddy
Date: Thu, 4 Dec 2025 19:19:23 +0000
Subject: [PATCH] Refactor meeting information display in appointment detail
page. Update layout and styling for improved clarity and user experience,
ensuring essential details about scheduled meetings are prominently
presented.
---
app/(admin)/admin/booking/[id]/page.tsx | 50 ++++++++++++-------------
1 file changed, 25 insertions(+), 25 deletions(-)
diff --git a/app/(admin)/admin/booking/[id]/page.tsx b/app/(admin)/admin/booking/[id]/page.tsx
index 54e6a83..428cdc4 100644
--- a/app/(admin)/admin/booking/[id]/page.tsx
+++ b/app/(admin)/admin/booking/[id]/page.tsx
@@ -625,31 +625,6 @@ export default function AppointmentDetailPage() {
)}
- {appointment.scheduled_datetime && (
-
-
- Meeting Information
-
-
-
-
- Meeting Start Time:
-
-
- {formatDate(appointment.scheduled_datetime)} at {formatTime(appointment.scheduled_datetime)}
-
-
-
-
- How to Access:
-
-
- Click the "Start Meeting" button below to begin the session. Once started, participants can join using the meeting link. You can also use the moderator link above to join directly.
-
-
-
-
- )}
)}
@@ -689,6 +664,31 @@ export default function AppointmentDetailPage() {
{formatStatus(appointment.status)}
+ {appointment.scheduled_datetime && (
+
+
+ Meeting Information
+
+
+
+
+ Meeting Start Time:
+
+
+ {formatDate(appointment.scheduled_datetime)} at {formatTime(appointment.scheduled_datetime)}
+
+
+
+
+ How to Access:
+
+
+ Click the "Start Meeting" button below to begin the session. Once started, participants can join using the meeting link. You can also use the moderator link above to join directly.
+
+
+
+
+ )}