about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/screens/Profile/Header/Shell.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/Profile/Header/Shell.tsx b/src/screens/Profile/Header/Shell.tsx
index a118ef1d1..477248d0b 100644
--- a/src/screens/Profile/Header/Shell.tsx
+++ b/src/screens/Profile/Header/Shell.tsx
@@ -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>