add flex shrink (#4597)

This commit is contained in:
Hailey
2024-06-21 15:15:12 -07:00
committed by GitHub
parent 4d6787009c
commit 4d9e686e3b
@@ -64,7 +64,7 @@ export function ProfileHoverCard(props: ProfileHoverCardProps) {
return props.children
} else {
return (
<View onPointerMove={onPointerMove}>
<View onPointerMove={onPointerMove} style={[a.flex_shrink]}>
<ProfileHoverCardInner {...props} />
</View>
)