diff --git a/src/routes/console/(billing-modal)/postReleaseModal.svelte b/src/routes/console/(billing-modal)/postReleaseModal.svelte index c303698cf3..145da0c9a7 100644 --- a/src/routes/console/(billing-modal)/postReleaseModal.svelte +++ b/src/routes/console/(billing-modal)/postReleaseModal.svelte @@ -25,10 +25,10 @@ async function handleUpgrade() { if (selectedOrg) { - await goto(`${base}/console/organization/${selectedOrg}/billing`); + await goto(`${base}/console/organization-${selectedOrg}/billing`); } else { const freeOrg = orgs.teams.find((o) => o.billingPlan === 'tier-0'); - await goto(`${base}/console/organization/${freeOrg.$id}/billing`); + await goto(`${base}/console/organization-${freeOrg.$id}/billing`); } show = false; wizard.start(ChangeOrganizationTierCloud);