diff --git a/apps/docs/content/guides/platform/manage-your-usage/branching.mdx b/apps/docs/content/guides/platform/manage-your-usage/branching.mdx index 87b57e18bde..59e3b8f3813 100644 --- a/apps/docs/content/guides/platform/manage-your-usage/branching.mdx +++ b/apps/docs/content/guides/platform/manage-your-usage/branching.mdx @@ -54,10 +54,10 @@ You can view Branching usage on the [organization's usage page](https://supabase zoomable /> -In the Usage Summary section, you can see how many hours your Preview branches existed during the selected time period. Hover over "Branches Compute Hours" for a detailed breakdown. +In the Usage Summary section, you can see how many hours your Preview branches existed during the selected time period. Hover over "Branching Compute Hours" for a detailed breakdown. Usage summary Branches Compute Hours
-

- Every project is a dedicated server and database. For every hour your project is - active, it incurs compute costs based on the compute size of your project. Paused - projects do not incur compute costs.{' '} - - Read more - -

+ {usageMeta?.metric === ComputeUsageMetric.COMPUTE_HOURS_BRANCH ? ( +

+ Each Preview branch is a separate environment with all Supabase services (Database, + Auth, Storage, etc.).{' '} + + Read more + +

+ ) : ( +

+ Every project is a dedicated server and database. For every hour your project is + active, it incurs compute costs based on the compute size of your project. Paused + projects do not incur compute costs.{' '} + + Read more + +

+ )}
{usageMeta && sortedProjectAllocations.length > 0 && ( diff --git a/apps/studio/data/analytics/org-daily-stats-query.ts b/apps/studio/data/analytics/org-daily-stats-query.ts index ee5788aa353..56e50f998e8 100644 --- a/apps/studio/data/analytics/org-daily-stats-query.ts +++ b/apps/studio/data/analytics/org-daily-stats-query.ts @@ -69,7 +69,7 @@ export enum ComputeUsageMetric { export const computeUsageMetricLabel = (computeUsageMetric: ComputeUsageMetric) => { switch (computeUsageMetric) { case 'COMPUTE_HOURS_BRANCH': - return 'Branches' + return 'Branching' case 'COMPUTE_HOURS_XS': return 'Micro' case 'COMPUTE_HOURS_SM':