From 386e2e03bf0f0ccca79ba769de700211872ed4ec Mon Sep 17 00:00:00 2001
From: iamkiddy
Date: Thu, 4 Dec 2025 19:01:16 +0000
Subject: [PATCH] Refactor meeting information display in user appointment
detail page. Update styling and structure for clarity, enhancing user
experience while maintaining essential details for scheduled meetings.
---
app/(user)/user/appointments/[id]/page.tsx | 50 +++++++++++-----------
1 file changed, 25 insertions(+), 25 deletions(-)
diff --git a/app/(user)/user/appointments/[id]/page.tsx b/app/(user)/user/appointments/[id]/page.tsx
index 8aef9ac..cb04f7a 100644
--- a/app/(user)/user/appointments/[id]/page.tsx
+++ b/app/(user)/user/appointments/[id]/page.tsx
@@ -472,31 +472,6 @@ export default function UserAppointmentDetailPage() {
)}
- {appointment.scheduled_datetime && (
-
-
- Meeting Information
-
-
-
-
- Meeting Start Time:
-
-
- {formatDate(appointment.scheduled_datetime)} at {formatTime(appointment.scheduled_datetime)}
-
-
-
-
- How to Access:
-
-
- Click the "Join Now" button below when the meeting becomes available. The meeting will be accessible shortly before the scheduled start time.
-
-
-
-
- )}
)}
@@ -536,6 +511,31 @@ export default function UserAppointmentDetailPage() {
{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 "Join Now" button below when the meeting becomes available. The meeting will be accessible shortly before the scheduled start time.
+
+
+
+
+ )}