this repo has no description
0
fork

Configure Feed

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

Merge branch 'patch-1' of https://github.com/elijah-wright/social-app into elijah-wright-patch-1

+4 -6
+4 -6
src/view/com/util/images/AutoSizedImage.tsx
··· 56 56 onPress={onPress} 57 57 onLongPress={onLongPress} 58 58 onPressIn={onPressIn} 59 - style={[styles.container, style]} 60 - accessible={true} 61 - accessibilityRole="button" 62 - accessibilityLabel={alt || 'Image'} 63 - accessibilityHint="Tap to view fully"> 59 + style={[styles.container, style]}> 64 60 <Image 65 61 style={[styles.image, {aspectRatio}]} 66 62 source={uri} 67 - accessible={false} // Must set for `accessibilityLabel` to work 63 + accessible={true} // Must set for `accessibilityLabel` to work 68 64 accessibilityIgnoresInvertColors 65 + accessibilityLabel={alt} 66 + accessibilityHint="Tap to view fully" 69 67 /> 70 68 {children} 71 69 </Pressable>