diff options
Diffstat (limited to 'src/screens/Profile/Header/Shell.tsx')
-rw-r--r-- | src/screens/Profile/Header/Shell.tsx | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/screens/Profile/Header/Shell.tsx b/src/screens/Profile/Header/Shell.tsx index 477248d0b..553b38a3b 100644 --- a/src/screens/Profile/Header/Shell.tsx +++ b/src/screens/Profile/Header/Shell.tsx @@ -81,15 +81,17 @@ let ProfileHeaderShell = ({ {children} - <View - style={[a.px_lg, a.pb_sm]} - pointerEvents={isIOS ? 'auto' : 'box-none'}> - {isMe ? ( - <LabelsOnMe details={{did: profile.did}} labels={profile.labels} /> - ) : ( - <ProfileHeaderAlerts moderation={moderation} /> - )} - </View> + {!isPlaceholderProfile && ( + <View + style={[a.px_lg, a.pb_sm]} + pointerEvents={isIOS ? 'auto' : 'box-none'}> + {isMe ? ( + <LabelsOnMe details={{did: profile.did}} labels={profile.labels} /> + ) : ( + <ProfileHeaderAlerts moderation={moderation} /> + )} + </View> + )} {!isDesktop && !hideBackButton && ( <TouchableWithoutFeedback |