diff options
Diffstat (limited to 'src/view/com/post-thread')
-rw-r--r-- | src/view/com/post-thread/PostRepostedBy.tsx | 3 | ||||
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 2 | ||||
-rw-r--r-- | src/view/com/post-thread/PostVotedBy.tsx | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/src/view/com/post-thread/PostRepostedBy.tsx b/src/view/com/post-thread/PostRepostedBy.tsx index 1f238f5b3..a58644cb7 100644 --- a/src/view/com/post-thread/PostRepostedBy.tsx +++ b/src/view/com/post-thread/PostRepostedBy.tsx @@ -86,7 +86,8 @@ const RepostedByItem = ({item}: {item: RepostedByViewItemModel}) => { <Link style={styles.outer} href={`/profile/${item.handle}`} - title={item.handle}> + title={item.handle} + noFeedback> <View style={styles.layout}> <View style={styles.layoutAvi}> <UserAvatar diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index ae13e0765..1a0c744d6 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -226,7 +226,7 @@ export const PostThreadItem = observer(function PostThreadItem({ ) } else { return ( - <Link style={styles.outer} href={itemHref} title={itemTitle}> + <Link style={styles.outer} href={itemHref} title={itemTitle} noFeedback> {!item.replyingTo && item.record.reply && ( <View style={styles.parentReplyLine} /> )} diff --git a/src/view/com/post-thread/PostVotedBy.tsx b/src/view/com/post-thread/PostVotedBy.tsx index 7b798482a..5857f3792 100644 --- a/src/view/com/post-thread/PostVotedBy.tsx +++ b/src/view/com/post-thread/PostVotedBy.tsx @@ -86,7 +86,8 @@ const LikedByItem = ({item}: {item: VotesViewItemModel}) => { <Link style={styles.outer} href={`/profile/${item.actor.handle}`} - title={item.actor.handle}> + title={item.actor.handle} + noFeedback> <View style={styles.layout}> <View style={styles.layoutAvi}> <UserAvatar |