diff options
author | Eric Bailey <git@esb.lol> | 2025-06-18 15:41:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-18 13:41:58 -0700 |
commit | 51babe016403a2cff6b38a2a7c9a4d22cb867138 (patch) | |
tree | 198e99a626c424e4a927c5f68759909f430c02d9 /src/components/ProfileHoverCard/index.web.tsx | |
parent | 04a2a227fc8bdd2a5d145ccf208b3a00e7a6f80a (diff) | |
download | voidsky-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.tsx | 2 |
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> ) |