about summary refs log tree commit diff
path: root/src/components/ProfileHoverCard/index.web.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-06-18 15:41:58 -0500
committerGitHub <noreply@github.com>2025-06-18 13:41:58 -0700
commit51babe016403a2cff6b38a2a7c9a4d22cb867138 (patch)
tree198e99a626c424e4a927c5f68759909f430c02d9 /src/components/ProfileHoverCard/index.web.tsx
parent04a2a227fc8bdd2a5d145ccf208b3a00e7a6f80a (diff)
downloadvoidsky-51babe016403a2cff6b38a2a7c9a4d22cb867138.tar.zst
Fix anchor text overflow in threads v2 (#8530)
Diffstat (limited to 'src/components/ProfileHoverCard/index.web.tsx')
-rw-r--r--src/components/ProfileHoverCard/index.web.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ProfileHoverCard/index.web.tsx b/src/components/ProfileHoverCard/index.web.tsx
index 17148a1b3..eb6efa4c9 100644
--- a/src/components/ProfileHoverCard/index.web.tsx
+++ b/src/components/ProfileHoverCard/index.web.tsx
@@ -74,7 +74,7 @@ export function ProfileHoverCard(props: ProfileHoverCardProps) {
     return props.children
   } else {
     return (
-      <View onPointerMove={onPointerMove} style={[a.flex_shrink]}>
+      <View onPointerMove={onPointerMove} style={[a.flex_shrink, props.style]}>
         <ProfileHoverCardInner {...props} />
       </View>
     )