From 0e0e27d48f7cf5862c722648bcfd1c7da686e723 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 19 Dec 2023 20:20:47 +0100 Subject: [PATCH] Fix redirect --- src/routes/console/(billing-modal)/postReleaseModal.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);