diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 9c8d7ac..2b6e806 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -40,7 +40,7 @@ export default function IndexPage() { 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."); } @@ -131,7 +131,7 @@ export default function IndexPage() {