Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Remove extra wrapper on notification user links (#3548)

authored by

Hailey and committed by
GitHub
7543f72b 41925bdc

+23 -24
+23 -24
src/view/com/notifications/FeedItem.tsx
··· 420 420 to={makeProfileLink({ 421 421 did: author.did, 422 422 handle: author.handle, 423 - })}> 424 - <View style={styles.expandedAuthor}> 425 - <View style={styles.expandedAuthorAvi}> 426 - <ProfileHoverCard did={author.did}> 427 - <UserAvatar 428 - size={35} 429 - avatar={author.avatar} 430 - moderation={author.moderation.ui('avatar')} 431 - type={author.associated?.labeler ? 'labeler' : 'user'} 432 - /> 433 - </ProfileHoverCard> 434 - </View> 435 - <View style={s.flex1}> 436 - <Text 437 - type="lg-bold" 438 - numberOfLines={1} 439 - style={pal.text} 440 - lineHeight={1.2}> 441 - {sanitizeDisplayName(author.displayName || author.handle)} 442 - &nbsp; 443 - <Text style={[pal.textLight]} lineHeight={1.2}> 444 - {sanitizeHandle(author.handle)} 445 - </Text> 423 + })} 424 + style={styles.expandedAuthor}> 425 + <View style={styles.expandedAuthorAvi}> 426 + <ProfileHoverCard did={author.did}> 427 + <UserAvatar 428 + size={35} 429 + avatar={author.avatar} 430 + moderation={author.moderation.ui('avatar')} 431 + type={author.associated?.labeler ? 'labeler' : 'user'} 432 + /> 433 + </ProfileHoverCard> 434 + </View> 435 + <View style={s.flex1}> 436 + <Text 437 + type="lg-bold" 438 + numberOfLines={1} 439 + style={pal.text} 440 + lineHeight={1.2}> 441 + {sanitizeDisplayName(author.displayName || author.handle)} 442 + &nbsp; 443 + <Text style={[pal.textLight]} lineHeight={1.2}> 444 + {sanitizeHandle(author.handle)} 446 445 </Text> 447 - </View> 446 + </Text> 448 447 </View> 449 448 </NewLink> 450 449 ))}