Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Mar 18, 2024
1 parent ac9b72c commit bad7548
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/lib/components/UserSelectItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export interface UserSelectItemProps {

export function UserSelectItem({ user }: UserSelectItemProps): JSX.Element {
return (
<span className="flex gap-2 items-center">
<span className="flex gap-2 items-center whitespace-nowrap">
<ProfilePicture user={user} size="sm" />
<span>
<span className="truncate">
{user.first_name} <b>{`<${user.email}>`}</b>
</span>
</span>
Expand Down

0 comments on commit bad7548

Please sign in to comment.