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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>
)