Skip to content

Commit

Permalink
Prevent ProfileHeaderHandle from breaking out of its parent view (#6574)
Browse files Browse the repository at this point in the history
  • Loading branch information
HorusGoul authored Nov 20, 2024
1 parent 202df84 commit 6605970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Profile/Header/Handle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 ? (
Expand Down

0 comments on commit 6605970

Please sign in to comment.