Prevent ProfileHeaderHandle from breaking out of its parent view (#6574)

This commit is contained in:
Horus Lugo
2024-11-20 22:47:06 +01:00
committed by GitHub
parent 202df845f3
commit 6605970fcf
+1 -1
View File
@@ -23,7 +23,7 @@ export function ProfileHeaderHandle({
const blockHide = profile.viewer?.blocking || profile.viewer?.blockedBy
return (
<View
style={[a.flex_row, a.gap_xs, a.align_center]}
style={[a.flex_row, a.gap_xs, a.align_center, {maxWidth: '100%'}]}
pointerEvents={disableTaps ? 'none' : isIOS ? 'auto' : 'box-none'}>
<NewskieDialog profile={profile} disabled={disableTaps} />
{profile.viewer?.followedBy && !blockHide ? (