TokenNameCell() — supabase Function Reference
Architecture documentation for the TokenNameCell() function in TokenCells.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Account/AccessTokens/AccessTokenTable/TokenCells.tsx lines 10–22
export const TokenNameCell = ({ name, tokenAlias }: TokenNameCellProps) => (
<TableCell className="w-auto max-w-96">
<p className="truncate" title={name}>
{name}
</p>
<p
className="font-mono text-foreground-lighter truncate text-xs mt-1 max-w-32 sm:max-w-48 lg:max-w-full"
title={tokenAlias}
>
{tokenAlias}
</p>
</TableCell>
)
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free