Fix anchor text overflow in threads v2 (#8530)

This commit is contained in:
Eric Bailey
2025-06-18 15:41:58 -05:00
committed by GitHub
parent 04a2a227fc
commit 51babe0164
3 changed files with 49 additions and 55 deletions
@@ -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>
)