about summary refs log tree commit diff
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-06-21 15:15:12 -0700
committerGitHub <noreply@github.com>2024-06-22 01:15:12 +0300
commit4d9e686e3b77756f8a404c4b38c7016f84a75ea0 (patch)
treeafdf16eb161e2426e794fe831c43ea8994645396
parent4d6787009ccbae2812aaeddefe6dc77742363f36 (diff)
downloadvoidsky-4d9e686e3b77756f8a404c4b38c7016f84a75ea0.tar.zst
add flex shrink (#4597)
-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 319eccfa4..4db9c4f8e 100644
--- a/src/components/ProfileHoverCard/index.web.tsx
+++ b/src/components/ProfileHoverCard/index.web.tsx
@@ -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>
     )