diff --git a/dashboard/src/app/user/[id]/page.tsx b/dashboard/src/app/user/[id]/page.tsx index 6453ec5..8c7b31d 100644 --- a/dashboard/src/app/user/[id]/page.tsx +++ b/dashboard/src/app/user/[id]/page.tsx @@ -4,6 +4,7 @@ import { ErrorDisplay } from '@/components/error'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { IdentityTraitForm } from '@/components/forms/IdentityTraitForm'; import { KratosSchema } from '@/lib/forms/identity-form'; +import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table'; export default async function UserDetailsPage({ params }: { params: Promise<{ id: string }> }) { @@ -74,6 +75,28 @@ export default async function UserDetailsPage({ params }: { params: Promise<{ id Credentials All authentication mechanisms registered with this identity + + + + + Type + Value + + + + { + Object.entries(identity.credentials).map(([key, value]) => { + return ( + + {key} + {value.identifiers[0]} + + ); + }) + } + +
+