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. +

+
+
+
+ )}