AuthorizedAppRow() — supabase Function Reference
Architecture documentation for the AuthorizedAppRow() function in AuthorizedAppRow.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Organization/OAuthApps/AuthorizedAppRow.tsx lines 14–47
export const AuthorizedAppRow = ({ app, onSelectRevoke }: AuthorizedAppRowProps) => {
return (
<Table.tr>
<Table.td>
<div
className="w-[30px] h-[30px] rounded-full bg-no-repeat bg-cover bg-center border border-control flex items-center justify-center"
style={{ backgroundImage: app.icon ? `url('${app.icon}')` : 'none' }}
>
{!!app.icon ? '' : `${app.name[0]}`}
</div>
</Table.td>
<Table.td>{app.name}</Table.td>
<Table.td>{app.created_by}</Table.td>
<Table.td>
<div className="flex items-center gap-x-2">
<p className="font-mono truncate" title={app.app_id}>
{app.app_id}
</p>
<CopyButton iconOnly type="default" text={app.app_id} className="px-1" />
</div>
</Table.td>
<Table.td>
<TimestampInfo
utcTimestamp={app.authorized_at ?? ''}
labelFormat="DD/MM/YYYY, HH:mm:ss"
className="text-sm"
/>
</Table.td>
<Table.td align="right">
<Button type="default" icon={<Trash />} className="px-1" onClick={() => onSelectRevoke()} />
</Table.td>
</Table.tr>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free