diff options
author | Ollie H <renahlee@outlook.com> | 2023-05-30 17:50:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 19:50:56 -0500 |
commit | a9a661ab58dc298124b8400f57156c17d47a5a4f (patch) | |
tree | e60b09fc0d874e4b1c03c5612ea8e21689e710b4 /src/view/com/util/post-ctrls/PostCtrls.tsx | |
parent | 7458b6f600a3d25812a64d93096b2a94676a7bb6 (diff) | |
download | voidsky-a9a661ab58dc298124b8400f57156c17d47a5a4f.tar.zst |
Add ability to reply, repost (without quote post), and like posts using VoiceOver (#765)
Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/com/util/post-ctrls/PostCtrls.tsx')
-rw-r--r-- | src/view/com/util/post-ctrls/PostCtrls.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index 41d66641f..12d4c48c8 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -191,9 +191,7 @@ export function PostCtrls(opts: PostCtrlsOpts) { onPress={onPressToggleLikeWrapper} accessibilityRole="button" accessibilityLabel={opts.isLiked ? 'Unlike' : 'Like'} - accessibilityHint={ - opts.isReposted ? 'Removes like from the post' : 'Like the post' - }> + accessibilityHint=""> {opts.isLiked ? ( <HeartIconSolid style={styles.ctrlIconLiked} |