Skip to content

Commit

Permalink
fix: remove condition
Browse files Browse the repository at this point in the history
  • Loading branch information
irisdv committed Mar 14, 2024
1 parent 77d526e commit 640d532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/UI/avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Avatar: FunctionComponent<AvatarProps> = ({ address, width = "32" }) => {
<>
{profileData?.profilePicture ? (
<img
src={profileData?.profilePicture ?? "https://starknet.id/api/identicons/0"}
src={profileData?.profilePicture}
width={width}
height={width}
className="rounded-full"
Expand Down

0 comments on commit 640d532

Please sign in to comment.