diff --git a/src/pages/DoctorDetail.tsx b/src/pages/DoctorDetail.tsx index 597309f..5046a87 100644 --- a/src/pages/DoctorDetail.tsx +++ b/src/pages/DoctorDetail.tsx @@ -53,7 +53,7 @@ export default function DoctorDetailPage() { const handleBook = async () => { try { await bookDoctor({ doctor: doc.name, specialty: doc.specialty }); - toast.success(`Appointment request sent for \${doc.name}`, { + toast.success(`Appointment request sent for ${doc.name}`, { description: "Our scheduling team will contact you within 24 hours to confirm.", }); } catch { @@ -73,7 +73,7 @@ export default function DoctorDetailPage() { {/* ── PROFILE HEADER ── */}