LastUsedCell() — supabase Function Reference
Architecture documentation for the LastUsedCell() function in TokenCells.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Account/AccessTokens/AccessTokenTable/TokenCells.tsx lines 28–40
export const LastUsedCell = ({ lastUsedAt }: LastUsedCellProps) => (
<TableCell className="text-foreground-light min-w-28">
{lastUsedAt ? (
<TimestampInfo
utcTimestamp={lastUsedAt}
label={dayjs(lastUsedAt).fromNow()}
className="text-sm"
/>
) : (
<p className="text-foreground-light text-sm">Never used</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