From c6c2a1e0b56d1c1ee6c6ca3d83f81c3c92b68433 Mon Sep 17 00:00:00 2001 From: PostHog Code Date: Tue, 5 May 2026 10:34:37 +0000 Subject: [PATCH 1/2] feat(billing): notify alpha plan users about june 4 migration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the Plan and Usage settings to make the alpha → free plan transition explicit: - Expands the alpha-plan banner to spell out that seats will be moved to the free plan on June 4, 2026 and points users at upgrading to Pro if they want to keep their current usage levels. - Hides the Upgrade button on the Pro plan card while on the alpha plan; the alpha plan already grants full Pro access, so showing Upgrade was misleading and let alpha users charge themselves $200/mo for no incremental value. Generated-By: PostHog Code Task-Id: 7ad4d917-387c-493f-8dd1-c8b8df698434 --- .../settings/components/sections/PlanUsageSettings.tsx | 6 ++++-- 1 file changed, 4 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 628d8b95f..3da862693 100644 --- a/apps/code/src/renderer/features/settings/components/sections/PlanUsageSettings.tsx +++ b/apps/code/src/renderer/features/settings/components/sections/PlanUsageSettings.tsx @@ -213,7 +213,7 @@ export function PlanUsageSettings() { : undefined } action={ - isOrgPro && !isAlpha ? ( + isAlpha ? null : isOrgPro ? ( isCanceling ? (