Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

fix warning on labeler profile: emoji detected but emoji not enabled (#6011)

authored by

Ben Harris and committed by
GitHub
e9f6a8e5 21ba1fad

+5 -3
+5 -3
src/components/moderation/LabelPreference.tsx
··· 46 46 47 47 return ( 48 48 <View style={[a.gap_xs, a.flex_1]}> 49 - <Text style={[a.font_bold, gtPhone ? a.text_sm : a.text_md]}>{name}</Text> 50 - <Text style={[t.atoms.text_contrast_medium, a.leading_snug]}> 49 + <Text emoji style={[a.font_bold, gtPhone ? a.text_sm : a.text_md]}> 50 + {name} 51 + </Text> 52 + <Text emoji style={[t.atoms.text_contrast_medium, a.leading_snug]}> 51 53 {description} 52 54 </Text> 53 55 ··· 268 270 a.border, 269 271 t.atoms.border_contrast_low, 270 272 ]}> 271 - <Text style={[a.font_bold, t.atoms.text_contrast_low]}> 273 + <Text emoji style={[a.font_bold, t.atoms.text_contrast_low]}> 272 274 {currentPrefLabel} 273 275 </Text> 274 276 </View>