Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Merge pull request #7058 from bluesky-social/fix-profile-empty-space-nobio

authored by

dan and committed by
GitHub
7db5882e b081f8f8

+4 -4
+1 -1
src/screens/Profile/Header/Metrics.tsx
··· 30 30 31 31 return ( 32 32 <View 33 - style={[a.flex_row, a.gap_sm, a.align_center, a.pb_md]} 33 + style={[a.flex_row, a.gap_sm, a.align_center]} 34 34 pointerEvents="box-none"> 35 35 <InlineLinkText 36 36 testID="profileHeaderFollowersButton"
+3 -3
src/screens/Profile/Header/ProfileHeaderStandard.tsx
··· 244 244 <ProfileHeaderHandle profile={profile} /> 245 245 </View> 246 246 {!isPlaceholderProfile && !isBlockedUser && ( 247 - <> 247 + <View style={a.gap_md}> 248 248 <ProfileHeaderMetrics profile={profile} /> 249 249 {descriptionRT && !moderation.ui('profileView').blur ? ( 250 250 <View pointerEvents="auto"> ··· 262 262 {!isMe && 263 263 !isBlockedUser && 264 264 shouldShowKnownFollowers(profile.viewer?.knownFollowers) && ( 265 - <View style={[a.flex_row, a.align_center, a.gap_sm, a.pt_md]}> 265 + <View style={[a.flex_row, a.align_center, a.gap_sm]}> 266 266 <KnownFollowers 267 267 profile={profile} 268 268 moderationOpts={moderationOpts} 269 269 /> 270 270 </View> 271 271 )} 272 - </> 272 + </View> 273 273 )} 274 274 </View> 275 275 <Prompt.Basic