diff --git a/app/(admin)/admin/booking/[id]/page.tsx b/app/(admin)/admin/booking/[id]/page.tsx
index ff14ed3..1a03d0f 100644
--- a/app/(admin)/admin/booking/[id]/page.tsx
+++ b/app/(admin)/admin/booking/[id]/page.tsx
@@ -457,10 +457,11 @@ export default function AppointmentDetailPage() {
}
setRescheduleDialogOpen(true);
}}
- className={`p-2 rounded-lg transition-colors ${isDark ? "hover:bg-gray-700 text-gray-300 hover:text-white" : "hover:bg-gray-100 text-gray-600 hover:text-gray-900"}`}
+ className={`flex items-center gap-2 px-3 py-2 rounded-lg transition-colors ${isDark ? "hover:bg-gray-700 text-gray-300 hover:text-white" : "hover:bg-gray-100 text-gray-600 hover:text-gray-900"}`}
title="Reschedule Appointment"
>
-
{appointment.can_join_as_moderator ? "Meeting is active - You can join as moderator" - : appointment.scheduled_datetime - ? `Meeting would be available to join starting at ${formatTime(appointment.scheduled_datetime)}` - : "Meeting would be available shortly"} + : "Click here to join"}
)} @@ -837,20 +836,13 @@ export default function AppointmentDetailPage() { // If can_join_as_moderator != true, display "Meeting would be available shortly" if (!canJoinAsModerator) { - const meetingTime = appointment.scheduled_datetime - ? formatTime(appointment.scheduled_datetime) - : "the scheduled time"; return ( ); } diff --git a/app/(user)/user/appointments/[id]/page.tsx b/app/(user)/user/appointments/[id]/page.tsx index 73e06fe..f964a72 100644 --- a/app/(user)/user/appointments/[id]/page.tsx +++ b/app/(user)/user/appointments/[id]/page.tsx @@ -469,7 +469,7 @@ export default function UserAppointmentDetailPage() {- {appointment.can_join_as_participant ? "Meeting is active - You can join now" : "Meeting would be available shortly"} + {appointment.can_join_as_participant ? "Meeting is active - You can join now" : "Click here to join"}