From d763090529f896476929b35518a49b205cc34a60 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 9 Jan 2026 20:34:06 +0200 Subject: [PATCH] fix: add accessibility hint to FeedItem Provide meaningful accessibilityHint for screen readers instead of empty string. Now describes that selecting the item opens the feed. Co-Authored-By: Claude Opus 4.5 --- src/view/shell/desktop/Feeds.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view/shell/desktop/Feeds.tsx b/src/view/shell/desktop/Feeds.tsx index 496946de90..57b078e0c1 100644 --- a/src/view/shell/desktop/Feeds.tsx +++ b/src/view/shell/desktop/Feeds.tsx @@ -171,6 +171,7 @@ function FeedItem({ onPress: () => void }) { const t = useTheme() + const {_} = useLingui() const { state: hovered, onIn: onHoverIn, @@ -182,7 +183,7 @@ function FeedItem({