From 3607f9d9a6a21559b9c455d59dd50cd1ebac1c90 Mon Sep 17 00:00:00 2001 From: Potenz Date: Mon, 15 Sep 2025 02:15:15 +0530 Subject: [PATCH] fix(toast message fix) - small fix --- apps/Frontend/src/pages/appointments-page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Frontend/src/pages/appointments-page.tsx b/apps/Frontend/src/pages/appointments-page.tsx index 99d8a2b..281f060 100644 --- a/apps/Frontend/src/pages/appointments-page.tsx +++ b/apps/Frontend/src/pages/appointments-page.tsx @@ -272,7 +272,7 @@ export default function AppointmentsPage() { onSuccess: (appointment) => { toast({ title: "Appointment Scheduled", - description: appointment.message || "Appointment created successfully.", + description: appointment.message || "Appointment updated successfully.", }); queryClient.invalidateQueries({ queryKey: qkAppointmentsDay(formattedSelectedDate),