diff options
author | Horus Lugo <horusgoul@gmail.com> | 2024-11-20 22:47:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 21:47:06 +0000 |
commit | 6605970fcfac1b013086933fd339750c8d08a052 (patch) | |
tree | 1a534575b1f1da76149fa20503024a25f6806aea /src/screens/Profile/Header/Handle.tsx | |
parent | 202df845f34f39cd55bf5721cfbc6d03e4fd41d2 (diff) | |
download | voidsky-6605970fcfac1b013086933fd339750c8d08a052.tar.zst |
Prevent ProfileHeaderHandle from breaking out of its parent view (#6574)
Diffstat (limited to 'src/screens/Profile/Header/Handle.tsx')
-rw-r--r-- | src/screens/Profile/Header/Handle.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Profile/Header/Handle.tsx b/src/screens/Profile/Header/Handle.tsx index 310378215..27b73da70 100644 --- a/src/screens/Profile/Header/Handle.tsx +++ b/src/screens/Profile/Header/Handle.tsx @@ -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 ? ( |