about summary refs log tree commit diff
path: root/src/view/com/post/Post.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r--src/view/com/post/Post.tsx16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx
index 7d2edff4c..3ed56ca1f 100644
--- a/src/view/com/post/Post.tsx
+++ b/src/view/com/post/Post.tsx
@@ -110,13 +110,15 @@ export const Post = observer(function Post({uri}: {uri: string}) {
   return (
     <Link style={styles.outer} href={itemHref} title={itemTitle}>
       <View style={styles.layout}>
-        <Link style={styles.layoutAvi} href={authorHref} title={authorTitle}>
-          <UserAvatar
-            size={50}
-            displayName={item.author.displayName}
-            handle={item.author.handle}
-          />
-        </Link>
+        <View style={styles.layoutAvi}>
+          <Link href={authorHref} title={authorTitle}>
+            <UserAvatar
+              size={50}
+              displayName={item.author.displayName}
+              handle={item.author.handle}
+            />
+          </Link>
+        </View>
         <View style={styles.layoutContent}>
           <PostMeta
             itemHref={itemHref}