fix: username never falling back to email

This commit is contained in:
Gabe Cook 2025-06-20 18:26:44 -05:00 committed by Aarnav Tale
parent 0344f17887
commit 779af42601
2 changed files with 3 additions and 3 deletions

View file

@ -64,7 +64,7 @@ export default function MachineRow({
{node.givenName}
</p>
<p className="text-sm opacity-50">
{node.user.name ?? node.user.email}
{node.user.name || node.user.email}
</p>
<div className="flex gap-1 flex-wrap mt-1.5">
{mapTagsToComponents(node, uiTags)}