diff --git a/src/lib/components/billing/estimatedTotalBox.svelte b/src/lib/components/billing/estimatedTotalBox.svelte index b7ab73af7..a6c8db6a7 100644 --- a/src/lib/components/billing/estimatedTotalBox.svelte +++ b/src/lib/components/billing/estimatedTotalBox.svelte @@ -64,7 +64,7 @@

- You'll pay {formatCurrency(estimatedTotal)} now, with our first + You'll pay {formatCurrency(estimatedTotal)} now, with your first billing cycle starting on {!currentPlan.trialDays diff --git a/src/routes/(console)/apply-credit/+page.svelte b/src/routes/(console)/apply-credit/+page.svelte index 884fd1763..95af6175f 100644 --- a/src/routes/(console)/apply-credit/+page.svelte +++ b/src/routes/(console)/apply-credit/+page.svelte @@ -189,6 +189,11 @@ $: selectedOrg = $organizationList?.teams?.find( (team) => team.$id === selectedOrgId ) as Organization; + + $: billingPlan = + selectedOrg?.billingPlan === BillingPlan.SCALE + ? BillingPlan.SCALE + : (campaign?.plan ?? BillingPlan.PRO); @@ -268,7 +273,7 @@ {/if} - {#if selectedOrg?.$id && selectedOrg?.billingPlan !== BillingPlan.FREE} + {#if selectedOrg?.$id && selectedOrg?.billingPlan !== BillingPlan.FREE && selectedOrg?.billingPlan !== BillingPlan.GITHUB_EDUCATION}