Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client
122
fork

Configure Feed

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

Fix visual consistency of 'reply to' in post and use display name

+5 -5
+1 -1
src/view/com/post/Post.tsx
··· 173 173 <UserInfoText 174 174 type="body2" 175 175 did={replyAuthorDid} 176 + attr="displayName" 176 177 style={[pal.textLight]} 177 - prefix="@" 178 178 /> 179 179 </Link> 180 180 </View>
+4 -4
src/view/com/posts/FeedItem.tsx
··· 187 187 <FontAwesomeIcon 188 188 icon="reply" 189 189 size={9} 190 - style={[{color: pal.colors.text}, s.mr5]} 190 + style={[{color: pal.colors.textLight}, s.mr5]} 191 191 /> 192 - <Text type="caption" style={[pal.textLight, s.mr2]}> 192 + <Text type="body2" style={[pal.textLight, s.mr2]}> 193 193 Reply to 194 194 </Text> 195 195 <Link href={replyHref} title="Parent post"> 196 196 <UserInfoText 197 - type="caption" 197 + type="body2" 198 198 did={replyAuthorDid} 199 + attr="displayName" 199 200 style={[pal.textLight]} 200 - prefix="@" 201 201 /> 202 202 </Link> 203 203 </View>