don't show individual labels on own profile, only "have been placed..." (#4057)

(cherry picked from commit 5e5716c0a8)
This commit is contained in:
Hailey
2024-05-16 13:22:04 -07:00
parent 0e8235cc20
commit ff9926f0e8
+3 -2
View File
@@ -84,9 +84,10 @@ let ProfileHeaderShell = ({
<View
style={[a.px_lg, a.pb_sm]}
pointerEvents={isIOS ? 'auto' : 'box-none'}>
<ProfileHeaderAlerts moderation={moderation} />
{isMe && (
{isMe ? (
<LabelsOnMe details={{did: profile.did}} labels={profile.labels} />
) : (
<ProfileHeaderAlerts moderation={moderation} />
)}
</View>