From 0a2b1fcfb808c9ddd503fac5247d1acf256cfb45 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 7 Aug 2025 19:15:49 +0300 Subject: add profile hover card to notif items (#8666) --- src/components/ProfileHoverCard/index.web.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/components/ProfileHoverCard/index.web.tsx') diff --git a/src/components/ProfileHoverCard/index.web.tsx b/src/components/ProfileHoverCard/index.web.tsx index eb6efa4c9..5aa57cde1 100644 --- a/src/components/ProfileHoverCard/index.web.tsx +++ b/src/components/ProfileHoverCard/index.web.tsx @@ -74,7 +74,9 @@ export function ProfileHoverCard(props: ProfileHoverCardProps) { return props.children } else { return ( - + ) @@ -326,7 +328,7 @@ export function ProfileHoverCardInner(props: ProfileHoverCardProps) { onPointerLeave={onPointerLeaveTarget} // @ts-ignore web only prop onMouseUp={onPress} - style={{flexShrink: 1}}> + style={[a.flex_shrink, props.inline && a.inline]}> {props.children} {isVisible && ( -- cgit 1.4.1