feat: update frontend billing api for mollie (country, vat_id, payment method update)

This commit is contained in:
Usman Baig
2026-03-26 20:24:54 +01:00
parent ef3edd963a
commit 704557f233
2 changed files with 11 additions and 2 deletions

View File

@@ -109,7 +109,7 @@ export default function PricingSection() {
const [loadingPlan, setLoadingPlan] = useState<string | null>(null)
const { user } = useAuth()
// * Show toast when redirected from Polar Checkout with canceled=true
// * Show toast when redirected from Mollie Checkout with canceled=true
useEffect(() => {
if (searchParams.get('canceled') === 'true') {
toast.info('Checkout was canceled. You can try again whenever youre ready.')
@@ -196,7 +196,7 @@ export default function PricingSection() {
limit,
})
// 3. Redirect to Polar Checkout
// 3. Redirect to Mollie Checkout
if (url) {
window.location.href = url
} else {