Skip to content

Commit

Permalink
Mobile: Accessibility: Mark note properties buttons as buttons (#11432)
Browse files Browse the repository at this point in the history
  • Loading branch information
personalizedrefrigerator authored Nov 22, 2024
1 parent 1dd02f1 commit 380ba28
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/app-mobile/components/SideMenuContentNote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ const SideMenuContentNoteComponent: React.FC<Props> = props => {
if (!onPressHandler) return content;

return (
<TouchableOpacity key={key} onPress={onPressHandler}>
<TouchableOpacity
key={key}
onPress={onPressHandler}
accessibilityRole='button'
>
{content}
</TouchableOpacity>
);
Expand Down

0 comments on commit 380ba28

Please sign in to comment.