Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix `aria-label` on the Share button (#3159)

It had the same one as the Like button for some reason

authored by

Alice and committed by
GitHub
f6685419 594958c6

+1 -3
+1 -3
src/view/com/util/post-ctrls/PostCtrls.tsx
··· 212 212 style={[styles.btn]} 213 213 onPress={onShare} 214 214 accessibilityRole="button" 215 - accessibilityLabel={`${ 216 - post.viewer?.like ? _(msg`Unlike`) : _(msg`Like`) 217 - } (${post.likeCount} ${pluralize(post.likeCount || 0, 'like')})`} 215 + accessibilityLabel={`${_(msg`Share`)}`} 218 216 accessibilityHint="" 219 217 hitSlop={big ? HITSLOP_20 : HITSLOP_10}> 220 218 <ArrowOutOfBox style={[defaultCtrlColor, styles.mt1]} width={22} />