about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/view/shell/desktop/LeftNav.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx
index 9f047418b..99fe9fc76 100644
--- a/src/view/shell/desktop/LeftNav.tsx
+++ b/src/view/shell/desktop/LeftNav.tsx
@@ -40,7 +40,10 @@ import {router} from '../../../routes'
 const ProfileCard = observer(() => {
   const store = useStores()
   return (
-    <Link href={`/profile/${store.me.handle}`} style={styles.profileCard}>
+    <Link
+      href={`/profile/${store.me.handle}`}
+      style={styles.profileCard}
+      asAnchor>
       <UserAvatar avatar={store.me.avatar} size={64} />
     </Link>
   )