chore: minor formatting

This commit is contained in:
CREDO23 2026-01-16 13:02:45 +02:00
parent 111ecc79fd
commit 16ebbb0709
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ export function CommentTrigger({ commentCount, isOpen, onClick }: CommentTrigger
>
<MessageSquare className={cn("size-4", isOpen && "fill-current")} />
{hasComments && (
<span className="min-w-[1.25rem] text-xs font-medium">{commentCount}</span>
<span className="min-w-5 text-xs font-medium">{commentCount}</span>
)}
</Button>
);