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

Configure Feed

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

[Chat] Minor bugfixes (#10284)

authored by

Samuel Newman and committed by
GitHub
59150430 bc9ad2c2

+6 -2
-1
src/components/dms/MessageItemEmbed.tsx
··· 28 28 <MessageContextProvider> 29 29 <View 30 30 style={[ 31 - isFromSelf ? a.mr_sm : a.ml_sm, 32 31 t.atoms.bg, 33 32 a.rounded_md, 34 33 native({
+6 -1
src/components/dms/MessagesListHeader.tsx
··· 156 156 moderation={moderation.ui('avatar')} 157 157 disableHoverCard={moderation.blocked} 158 158 /> 159 - <ProfileBadges profile={profile} size="md" style={[a.pl_xs]} /> 159 + <View style={[a.flex_row, a.align_center, a.flex_1]}> 160 + <Text style={[a.text_md, a.font_semi_bold]} numberOfLines={1}> 161 + {displayName} 162 + </Text> 163 + <ProfileBadges profile={profile} size="md" style={[a.pl_xs]} /> 164 + </View> 160 165 </Link> 161 166 } 162 167 muted={convoState.convo?.muted}