Skip to content

Commit

Permalink
fix Long names are not viewable lukevella#1007
Browse files Browse the repository at this point in the history
fixed by removing truncation from username
  • Loading branch information
crnnr committed Jul 1, 2024
1 parent 5123f72 commit 8ff4254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/components/poll/user-avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const UserAvatar: React.FunctionComponent<UserAvatarProps> = ({
)}
>
<UserAvatarInner {...forwardedProps} />
<div className="min-w-0 truncate text-sm font-medium">
<div className="min-w-0 text-sm font-medium">
{forwardedProps.name}
</div>
{isYou ? <Badge>{t("you")}</Badge> : null}
Expand Down

0 comments on commit 8ff4254

Please sign in to comment.