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()) ? ( 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