chore: add org id to org table

This commit is contained in:
allanice001
2025-12-29 11:59:27 +00:00
parent 6611dc4950
commit 53725bb834
4 changed files with 10 additions and 10 deletions

View File

@@ -305,6 +305,7 @@ export const MePage = () => {
<Table>
<TableHeader>
<TableRow>
<TableHead>Id</TableHead>
<TableHead>Name</TableHead>
<TableHead>Domain</TableHead>
</TableRow>
@@ -312,6 +313,7 @@ export const MePage = () => {
<TableBody>
{meQ.data?.organizations?.map((o) => (
<TableRow key={o.id}>
<TableCell>{o.id}</TableCell>
<TableCell>{o.name}</TableCell>
<TableCell>{(o as any).domain ?? "—"}</TableCell>
</TableRow>