deer social fork for personal usage. but you might see a use idk. github mirror
4
fork

Configure Feed

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

Reimplement web links for handles

authored by

Essem and committed by
ayla
5f2d920a a725d3c9

+8 -12
+8 -12
src/screens/Profile/Header/Handle.tsx
··· 25 25 const blockHide = profile.viewer?.blocking || profile.viewer?.blockedBy 26 26 const isBskySocialHandle = profile.handle.endsWith('.bsky.social') 27 27 const showProfileInHandle = useShowLinkInHandle() 28 + const sanitized = sanitizeHandle( 29 + profile.handle, 30 + '@', 31 + // forceLTR handled by CSS above on web 32 + isNative, 33 + ) 28 34 return ( 29 35 <View 30 36 style={[a.flex_row, a.gap_sm, a.align_center, {maxWidth: '100%'}]} ··· 64 70 to={`https://${profile.handle}`} 65 71 label={profile.handle}> 66 72 <Text style={[a.text_md, {color: t.palette.primary_500}]}> 67 - {sanitizeHandle( 68 - profile.handle, 69 - '@', 70 - // forceLTR handled by CSS above on web 71 - isNative, 72 - )} 73 + {sanitized} 73 74 </Text> 74 75 </InlineLinkText> 75 76 ) : ( 76 - sanitizeHandle( 77 - profile.handle, 78 - '@', 79 - // forceLTR handled by CSS above on web 80 - isNative, 81 - ) 77 + sanitized 82 78 )} 83 79 </Text> 84 80 </View>