diff --git a/packages/frontend-2/components/settings/workspaces/Billing.vue b/packages/frontend-2/components/settings/workspaces/Billing.vue index 73074c6b62..dbd2838ac6 100644 --- a/packages/frontend-2/components/settings/workspaces/Billing.vue +++ b/packages/frontend-2/components/settings/workspaces/Billing.vue @@ -49,30 +49,38 @@

-

- {{ - statusIsTrial - ? 'Expected bill' - : subscription?.billingInterval === BillingInterval.Yearly - ? 'Annual bill' - : 'Monthly bill' - }} -

-

- {{ billValue }} per - {{ - subscription?.billingInterval === BillingInterval.Yearly - ? 'year' - : 'month' - }} -

-

- {{ billDescription }} - -

+ +

@@ -123,6 +131,7 @@ class="pt-4" /> currentPlan.value?.name === WorkspacePlans.Academia +) const isPurchasablePlan = computed(() => isPaidPlan(currentPlan.value?.name)) const seatPrice = computed(() => currentPlan.value && subscription.value