Skip to content

Commit 971beca

Browse files
committed
fix(dashboard): wrap encryption tooltip trigger in span so it renders
1 parent 2eb7575 commit 971beca

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

  • apps/dashboard/app/(main)/websites/[id]/users/[userId]

apps/dashboard/app/(main)/websites/[id]/users/[userId]/page.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -466,10 +466,9 @@ function Header({
466466
</h1>
467467
{identity?.displayName || identity?.email ? (
468468
<Tooltip content="Name and email are encrypted at rest">
469-
<LockSimpleIcon
470-
className="size-3 text-muted-foreground"
471-
weight="duotone"
472-
/>
469+
<span className="flex items-center text-muted-foreground">
470+
<LockSimpleIcon className="size-3" weight="duotone" />
471+
</span>
473472
</Tooltip>
474473
) : null}
475474
</div>

0 commit comments

Comments
 (0)