From 0e1c719eef2178450c9abd0b432bb4c882125623 Mon Sep 17 00:00:00 2001 From: PostHog Code Date: Tue, 5 May 2026 15:17:27 +0000 Subject: [PATCH 1/2] fix(billing): clarify upgrade flow charge details Adds the organization name and a note that the first charge is prorated for the remainder of the current billing cycle so users understand who is being charged, how, and why the first charge may not be the full $200. Generated-By: PostHog Code Task-Id: dfb1cbbe-be34-4ef0-aadc-e75880db6019 --- .../components/sections/PlanUsageSettings.tsx | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/apps/code/src/renderer/features/settings/components/sections/PlanUsageSettings.tsx b/apps/code/src/renderer/features/settings/components/sections/PlanUsageSettings.tsx index 24879791d..fea690aef 100644 --- a/apps/code/src/renderer/features/settings/components/sections/PlanUsageSettings.tsx +++ b/apps/code/src/renderer/features/settings/components/sections/PlanUsageSettings.tsx @@ -353,8 +353,14 @@ export function PlanUsageSettings() { Upgrade to Pro - You are about to subscribe to the Pro plan. Your organization will - be charged $200/month starting immediately. + {seat?.organization_name ? ( + <> + {seat.organization_name} will be + charged $200/month using the payment method on file in PostHog. + + ) : ( + "Your organization will be charged $200/month using the payment method on file in PostHog." + )} @@ -370,6 +376,19 @@ export function PlanUsageSettings() { All Claude and Codex models + + + + Your first charge is prorated for the remainder of the current + billing cycle, then $200/month thereafter. + +