mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Don't show profile labels until loaded (#4357)

authored by danabra.mov and committed by

GitHub b5ac4504 551af88f

+11 -9
+11 -9
src/screens/Profile/Header/Shell.tsx
··· 81 81 82 82 {children} 83 83 84 - <View 85 - style={[a.px_lg, a.pb_sm]} 86 - pointerEvents={isIOS ? 'auto' : 'box-none'}> 87 - {isMe ? ( 88 - <LabelsOnMe details={{did: profile.did}} labels={profile.labels} /> 89 - ) : ( 90 - <ProfileHeaderAlerts moderation={moderation} /> 91 - )} 92 - </View> 84 + {!isPlaceholderProfile && ( 85 + <View 86 + style={[a.px_lg, a.pb_sm]} 87 + pointerEvents={isIOS ? 'auto' : 'box-none'}> 88 + {isMe ? ( 89 + <LabelsOnMe details={{did: profile.did}} labels={profile.labels} /> 90 + ) : ( 91 + <ProfileHeaderAlerts moderation={moderation} /> 92 + )} 93 + </View> 94 + )} 93 95 94 96 {!isDesktop && !hideBackButton && ( 95 97 <TouchableWithoutFeedback