Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ const TableContainer = ({ children }: { children: React.ReactNode }) => (
<Table className="p-5 table-auto">
<TableHeader>
<TableRow className="bg-200">
<TableHead className={tableHeaderClass}>Name</TableHead>
<TableHead className={tableHeaderClass}>Token</TableHead>
<TableHead className={tableHeaderClass}>Last used</TableHead>
<TableHead className={tableHeaderClass}>Expires</TableHead>
Expand Down Expand Up @@ -152,15 +151,15 @@ export const AccessTokenList = ({ searchString = '', onDeleteSuccess }: AccessTo
{filteredTokens?.map((x) => {
return (
<TableRow key={x.token_alias}>
<TableCell className="max-w-32 lg:max-w-40">
<TableCell className="w-auto max-w-96">
<p className="truncate" title={x.name}>
{x.name}
</p>
<p className="font-mono text-foreground-lighter truncate text-xs mt-1">
{x.token_alias}
</p>
</TableCell>
<TableCell className="max-w-36 lg:max-w-80">
<p className="font-mono text-foreground-light truncate">{x.token_alias}</p>
</TableCell>
<TableCell className="min-w-32">
<TableCell className="min-w-28">
<p className="text-foreground-light">
{x.last_used_at ? (
<Tooltip>
Expand All @@ -174,7 +173,7 @@ export const AccessTokenList = ({ searchString = '', onDeleteSuccess }: AccessTo
)}
</p>
</TableCell>
<TableCell className="min-w-32">
<TableCell className="min-w-28">
{x.expires_at ? (
dayjs(x.expires_at).isBefore(dayjs()) ? (
<Tooltip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading