Skip to content

Commit

Permalink
🐛 Use uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
lukevella committed Sep 16, 2024
1 parent 35d2058 commit 3064a72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/optimized-avatar-image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function OptimizedAvatarImage({
"text-lg": size >= 48,
})}
>
{name[0]}
{name[0]?.toUpperCase()}
</AvatarFallback>
) : null}
</Avatar>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/participant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const ParticipantAvatar = ({
return (
<Avatar size={size}>
<AvatarFallback className="text-xs" color={color}>
{name[0]}
{name[0]?.toUpperCase()}
</AvatarFallback>
</Avatar>
);
Expand Down

0 comments on commit 3064a72

Please sign in to comment.