Skip to content

Commit

Permalink
fix: don't show contacts avatar for a self profile (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-hades authored Jan 26, 2024
1 parent 8b453d6 commit 8e496c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const AvatarHeader = memo(
iconStyle={iconAvatarStyle}
/>
)}
{contactDetails && (
{contactDetails && !isOwner && (
<ContactsAvatarButton
onPress={() => setIsTooltipVisible(state => !state)}
contacts={contactDetails}
Expand Down

0 comments on commit 8e496c3

Please sign in to comment.