Skip to content

Commit

Permalink
fix: fix gravatar size error
Browse files Browse the repository at this point in the history
  • Loading branch information
asabotovich committed Aug 26, 2024
1 parent 053a9ae commit 8b4548b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/harmony/Gravatar/Gravatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ export const Gravatar: FC<GravatarProps> = ({
{getInitials(name)}
</Circle>
) : (
<img className={cn(s.GravatarImage, className)} src={img} height={pixelSize} width={size} {...props} />
<img className={cn(s.GravatarImage, className)} src={img} height={pixelSize} width={pixelSize} {...props} />
);
};

0 comments on commit 8b4548b

Please sign in to comment.