···142142 dataSet,
143143 title,
144144 onPress,
145145+ ...orgProps
145146}: {
146147 testID?: string
147148 type?: TypographyVariant
···190191 title={title}
191192 // @ts-ignore web only -prf
192193 hrefAttrs={hrefAttrs} // hack to get open in new tab to work on safari. without this, safari will open in a new window
193193- {...props}>
194194+ {...props}
195195+ {...orgProps}>
194196 {text}
195197 </Text>
196198 )
+5-1
src/view/com/util/UserAvatar.tsx
···230230231231 // onSelectNewAvatar is only passed as prop on the EditProfile component
232232 return onSelectNewAvatar ? (
233233- <NativeDropdown testID="changeAvatarBtn" items={dropdownItems}>
233233+ <NativeDropdown
234234+ testID="changeAvatarBtn"
235235+ items={dropdownItems}
236236+ accessibilityLabel="Image options"
237237+ accessibilityHint="">
234238 {avatar ? (
235239 <HighPriorityImage
236240 testID="userAvatarImage"
+5-1
src/view/com/util/UserBanner.tsx
···106106107107 // setUserBanner is only passed as prop on the EditProfile component
108108 return onSelectNewBanner ? (
109109- <NativeDropdown testID="changeBannerBtn" items={dropdownItems}>
109109+ <NativeDropdown
110110+ testID="changeBannerBtn"
111111+ items={dropdownItems}
112112+ accessibilityLabel="Image options"
113113+ accessibilityHint="">
110114 {banner ? (
111115 <Image
112116 testID="userBannerImage"