fix: frontend build error in tickets page

This commit is contained in:
Tiago Yamamoto 2025-12-28 00:29:46 -03:00
parent b79566aad7
commit 53d5b9822a

View file

@ -122,7 +122,7 @@ export default function AdminTicketsPage() {
{ticket.id.substring(0, 8)}...
</TableCell>
<TableCell className="font-medium">{ticket.subject}</TableCell>
<TableCell className="text-xs text-muted-foreground font-mono" title={ticket.userId}>
<TableCell className="text-xs text-muted-foreground font-mono" title={String(ticket.userId)}>
{ticket.userId}
</TableCell>
<TableCell>{getStatusBadge(ticket.status)}</TableCell>