Skip to content

Commit

Permalink
Merge pull request #260 from pavinduLakshan/fix_user_icon_inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
pavinduLakshan authored Oct 3, 2024
2 parents 824b965 + a01ea1e commit fef22b9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ const UserDropdownMenu: FC<UserDropdownMenuProps> & WithWrapperProps = (
onClick={(): void => handleUserProfileNavigation()}
>
<ListItemAvatar>
<Avatar src={user?.image} alt="User" />
<Avatar src={user?.image} alt="User">
{user?.name?.split('')[0]}
</Avatar>
</ListItemAvatar>
<ListItemText primary={user?.name} secondary={user?.email} />
</ListItem>
Expand Down

0 comments on commit fef22b9

Please sign in to comment.