mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Merge pull request #660 from appwrite/fix-redirects-billing
Fix: redirect in billing
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user