Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Merge branch 'elijah-wright-patch-1' into main

+6 -6
+6 -6
src/view/com/util/images/AutoSizedImage.tsx
··· 52 52 53 53 if (onPress || onLongPress || onPressIn) { 54 54 return ( 55 + // disable a11y rule because in this case we want the tags on the image (#1640) 56 + // eslint-disable-next-line react-native-a11y/has-valid-accessibility-descriptors 55 57 <Pressable 56 58 onPress={onPress} 57 59 onLongPress={onLongPress} 58 60 onPressIn={onPressIn} 59 - style={[styles.container, style]} 60 - accessible={true} 61 - accessibilityRole="button" 62 - accessibilityLabel={alt || 'Image'} 63 - accessibilityHint="Tap to view fully"> 61 + style={[styles.container, style]}> 64 62 <Image 65 63 style={[styles.image, {aspectRatio}]} 66 64 source={uri} 67 - accessible={false} // Must set for `accessibilityLabel` to work 65 + accessible={true} // Must set for `accessibilityLabel` to work 68 66 accessibilityIgnoresInvertColors 67 + accessibilityLabel={alt} 68 + accessibilityHint="Tap to view fully" 69 69 /> 70 70 {children} 71 71 </Pressable>