Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

in-convo muted chat indicator (#4127)

authored by

Samuel Newman and committed by
GitHub
e5aa8c08 70019e73

+8
+8
src/components/dms/MessagesListHeader.tsx
··· 20 20 import {PreviewableUserAvatar} from 'view/com/util/UserAvatar' 21 21 import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' 22 22 import {ConvoMenu} from '#/components/dms/ConvoMenu' 23 + import {Bell2Off_Filled_Corner0_Rounded as BellStroke} from '#/components/icons/Bell2' 23 24 import {Link} from '#/components/Link' 24 25 import {Text} from '#/components/Typography' 25 26 ··· 176 177 ]} 177 178 numberOfLines={1}> 178 179 @{profile.handle} 180 + {convoState.convo?.muted && ( 181 + <> 182 + {' '} 183 + &middot;{' '} 184 + <BellStroke size="xs" style={t.atoms.text_contrast_medium} /> 185 + </> 186 + )} 179 187 </Text> 180 188 )} 181 189 </View>