From db2bcc31cfd48c5242d3e18df83968436020712b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Gr=C3=BCneberg?= Date: Tue, 6 Jan 2026 16:56:14 +0800 Subject: [PATCH 1/2] chore: change wording for Pro Plan upgrade (#41718) Remove unlimited project wording as the projects costs extra --- .../Subscription/SubscriptionPlanUpdateDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/studio/components/interfaces/Organization/BillingSettings/Subscription/SubscriptionPlanUpdateDialog.tsx b/apps/studio/components/interfaces/Organization/BillingSettings/Subscription/SubscriptionPlanUpdateDialog.tsx index db232345f97fc..9dc7192d28669 100644 --- a/apps/studio/components/interfaces/Organization/BillingSettings/Subscription/SubscriptionPlanUpdateDialog.tsx +++ b/apps/studio/components/interfaces/Organization/BillingSettings/Subscription/SubscriptionPlanUpdateDialog.tsx @@ -38,7 +38,7 @@ const stripePromise = loadStripe(STRIPE_PUBLIC_KEY) const PLAN_HEADINGS = { tier_pro: - 'the Pro plan to unlock unlimited projects, daily backups, and email support whenever you need it', + 'the Pro plan to unlock more compute resources, daily backups, no project pausing, and email support whenever you need it', tier_team: 'the Team plan for SOC2, SSO, priority support and greater data and log retention', default: 'to a new plan', } as const From a3e67c15751f92508e8f63f985649edbf0834ef5 Mon Sep 17 00:00:00 2001 From: "kemal.earth" <606977+kemaldotearth@users.noreply.github.com> Date: Tue, 6 Jan 2026 10:05:30 +0000 Subject: [PATCH 2/2] fix(studio): layout of access tokens table (#41721) * fix: layout of access tokens table modified * fix: max width for truncation * fix: add gap to token string --- .../Account/AccessTokens/AccessTokenList.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/apps/studio/components/interfaces/Account/AccessTokens/AccessTokenList.tsx b/apps/studio/components/interfaces/Account/AccessTokens/AccessTokenList.tsx index 38277a70a2039..94f25d8ff2215 100644 --- a/apps/studio/components/interfaces/Account/AccessTokens/AccessTokenList.tsx +++ b/apps/studio/components/interfaces/Account/AccessTokens/AccessTokenList.tsx @@ -57,7 +57,6 @@ const TableContainer = ({ children }: { children: React.ReactNode }) => ( - Name Token Last used Expires @@ -152,15 +151,15 @@ export const AccessTokenList = ({ searchString = '', onDeleteSuccess }: AccessTo {filteredTokens?.map((x) => { return ( - +

{x.name}

+

+ {x.token_alias} +

- -

{x.token_alias}

-
- +

{x.last_used_at ? ( @@ -174,7 +173,7 @@ export const AccessTokenList = ({ searchString = '', onDeleteSuccess }: AccessTo )}

- + {x.expires_at ? ( dayjs(x.expires_at).isBefore(dayjs()) ? (