diff --git a/src/pages/Tour.tsx b/src/pages/Tour.tsx index eee8319..73acc04 100644 --- a/src/pages/Tour.tsx +++ b/src/pages/Tour.tsx @@ -31,7 +31,7 @@ export default function TourPage() { try { const res = await buyTicket({ plan: show.venue, city: show.city }); if (res?.url && res.url !== "#") { window.location.href = res.url; return; } - toast.success(`Tickets reserved for \${show.venue}`); + toast.success(`Tickets reserved for ${show.venue}`); } catch { toast.error("Could not start checkout. Please try again."); }