From 6fa48cbea5f0ffe980b68fd166503d30a6604002 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 23:01:09 +0000 Subject: [PATCH] Seed: project-management template (23 files) --- src/pages/Settings.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/pages/Settings.tsx b/src/pages/Settings.tsx index 5496929..e5166d2 100644 --- a/src/pages/Settings.tsx +++ b/src/pages/Settings.tsx @@ -75,7 +75,7 @@ export default function SettingsPage() { try { const res: any = await startCheckout({ plan: plan.name, amount: plan.amount }); if (res?.url) { window.location.href = res.url; return; } - toast(`Upgraded to \${plan.name}`); + toast(`Upgraded to ${plan.name}`); } catch { toast("Checkout could not be started. Please try again."); } @@ -99,7 +99,7 @@ export default function SettingsPage() {