diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-18 16:43:18 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-18 16:43:18 -0600 |
commit | 36dc1c752556b8413dfb4d8fae6f930888489224 (patch) | |
tree | 79980e5d08632bb5cce324ae8c16bed7c8ba8760 /src/view/com/post/Post.tsx | |
parent | c3caf4826e05623eeadd19c52402d6bf52494197 (diff) | |
download | voidsky-36dc1c752556b8413dfb4d8fae6f930888489224.tar.zst |
Reduce confusing visual feedback while scrolling
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 6faae3ddd..4d756758b 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -133,7 +133,11 @@ export const Post = observer(function Post({ } return ( - <Link style={[styles.outer, style]} href={itemHref} title={itemTitle}> + <Link + style={[styles.outer, style]} + href={itemHref} + title={itemTitle} + noFeedback> {showReplyLine && <View style={styles.replyLine} />} <View style={styles.layout}> <View style={styles.layoutAvi}> |