diff options
Diffstat (limited to 'src/view/com/profile/ProfileCard.tsx')
-rw-r--r-- | src/view/com/profile/ProfileCard.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileCard.tsx b/src/view/com/profile/ProfileCard.tsx index 22b8bbdea..241c8f10a 100644 --- a/src/view/com/profile/ProfileCard.tsx +++ b/src/view/com/profile/ProfileCard.tsx @@ -20,7 +20,11 @@ export function ProfileCard({ onPressButton?: () => void }) { return ( - <Link style={styles.outer} href={`/profile/${handle}`} title={handle}> + <Link + style={styles.outer} + href={`/profile/${handle}`} + title={handle} + noFeedback> <View style={styles.layout}> <View style={styles.layoutAvi}> <UserAvatar |