diff --git a/src/routes/console/feedbackWizard.svelte b/src/routes/console/feedbackWizard.svelte index fd55199c3..9a7553ae1 100644 --- a/src/routes/console/feedbackWizard.svelte +++ b/src/routes/console/feedbackWizard.svelte @@ -3,8 +3,8 @@ import { onDestroy } from 'svelte'; import type { WizardStepsType } from '$lib/layout/wizard.svelte'; import { feedbackData } from '$lib/stores/feedback'; - import Step1 from './wizardFeedback/step1.svelte'; - import Step2 from './wizardFeedback/step2.svelte'; + import Step1 from './wizard/feedback/step1.svelte'; + import Step2 from './wizard/feedback/step2.svelte'; onDestroy(() => { feedbackData.reset(); diff --git a/src/routes/console/organization-[organization]/+page.svelte b/src/routes/console/organization-[organization]/+page.svelte index a5aaf20c9..d0e7d0373 100644 --- a/src/routes/console/organization-[organization]/+page.svelte +++ b/src/routes/console/organization-[organization]/+page.svelte @@ -109,6 +109,11 @@ +{project.platforms.length - 3} {/if} + + {#if isCloud} +

region

+ {/if} +
{/each} diff --git a/src/routes/console/organization-[organization]/billing/+page.svelte b/src/routes/console/organization-[organization]/billing/+page.svelte index f9135f2a1..dd5cd1cfb 100644 --- a/src/routes/console/organization-[organization]/billing/+page.svelte +++ b/src/routes/console/organization-[organization]/billing/+page.svelte @@ -16,7 +16,7 @@ - {#if $organization?.billingPlan === 'tier-2'} + {#if $organization?.billingPlan !== 'tier-0' && !!$organization?.billingBudget} {/if} diff --git a/src/routes/console/organization-[organization]/billing/billingAddress.svelte b/src/routes/console/organization-[organization]/billing/billingAddress.svelte index f6b93342e..03de455f7 100644 --- a/src/routes/console/organization-[organization]/billing/billingAddress.svelte +++ b/src/routes/console/organization-[organization]/billing/billingAddress.svelte @@ -7,7 +7,7 @@ - Billing Address + Billing address

View or update your billing address. This address will appear on your invoice. diff --git a/src/routes/console/organization-[organization]/billing/budgetAlert.svelte b/src/routes/console/organization-[organization]/billing/budgetAlert.svelte index aafeab3d2..653f47ded 100644 --- a/src/routes/console/organization-[organization]/billing/budgetAlert.svelte +++ b/src/routes/console/organization-[organization]/billing/budgetAlert.svelte @@ -63,7 +63,7 @@

- Budget Alert Condition + Budget alert aondition

Get notified by email when your organization meets or exceeds a percent of your diff --git a/src/routes/console/organization-[organization]/billing/budgetCap.svelte b/src/routes/console/organization-[organization]/billing/budgetCap.svelte index 2cee35bbd..ce254e9e5 100644 --- a/src/routes/console/organization-[organization]/billing/budgetCap.svelte +++ b/src/routes/console/organization-[organization]/billing/budgetCap.svelte @@ -1,26 +1,39 @@ @@ -43,7 +60,7 @@ class="link">Learn more about usage rates.

- {#if $organization?.billingPlan !== 'tier-2'} + {#if $organization?.billingPlan === 'tier-0'} Budget caps are a Pro plan feature @@ -60,7 +77,7 @@ {/if} @@ -68,7 +85,7 @@ - +
diff --git a/src/routes/console/project-[project]/settings/billing/+page.svelte b/src/routes/console/project-[project]/settings/billing/+page.svelte deleted file mode 100644 index e6264c6a2..000000000 --- a/src/routes/console/project-[project]/settings/billing/+page.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - Billing - - diff --git a/src/routes/console/project-[project]/settings/billing/budgetCap.svelte b/src/routes/console/project-[project]/settings/billing/budgetCap.svelte deleted file mode 100644 index 2d1b9749d..000000000 --- a/src/routes/console/project-[project]/settings/billing/budgetCap.svelte +++ /dev/null @@ -1,31 +0,0 @@ - - -
- - Budget Cap -

- Restrict your resource usage by setting a budget cap. Learn more about usage rates. -

- - - - - - - - - -
-
diff --git a/src/routes/console/project-[project]/settings/billing/bugetAlert.svelte b/src/routes/console/project-[project]/settings/billing/bugetAlert.svelte deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/routes/console/project-[project]/settings/billing/overview.svelte b/src/routes/console/project-[project]/settings/billing/overview.svelte deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/routes/console/project-[project]/settings/header.svelte b/src/routes/console/project-[project]/settings/header.svelte index 86fe3726d..03595b48f 100644 --- a/src/routes/console/project-[project]/settings/header.svelte +++ b/src/routes/console/project-[project]/settings/header.svelte @@ -27,11 +27,6 @@ title: 'Usage', event: 'usage', hasChildren: true - }, - { - href: `${path}/billing`, - title: 'Billing', - event: 'billing' } ]; diff --git a/src/routes/console/wizardFeedback/step1.svelte b/src/routes/console/wizard/feedback/step1.svelte similarity index 100% rename from src/routes/console/wizardFeedback/step1.svelte rename to src/routes/console/wizard/feedback/step1.svelte diff --git a/src/routes/console/wizardFeedback/step2.svelte b/src/routes/console/wizard/feedback/step2.svelte similarity index 100% rename from src/routes/console/wizardFeedback/step2.svelte rename to src/routes/console/wizard/feedback/step2.svelte