diff options
author | Eric Bailey <git@esb.lol> | 2024-06-24 18:55:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 18:55:29 -0500 |
commit | 795fe7455b77c01fe6d9274c172e3e9c9ec1464e (patch) | |
tree | fd7d50822bd4775f9cb17e61312700f3302f1bc4 /src | |
parent | dc9e51dca19822bb1c0ae688d581bdb27ace6747 (diff) | |
download | voidsky-795fe7455b77c01fe6d9274c172e3e9c9ec1464e.tar.zst |
Clicky newsky androidy (#4627)
* Clicky newsky androidy * tweak --------- Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Profile/Header/Handle.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/Profile/Header/Handle.tsx b/src/screens/Profile/Header/Handle.tsx index 268b7350f..0344f1a23 100644 --- a/src/screens/Profile/Header/Handle.tsx +++ b/src/screens/Profile/Header/Handle.tsx @@ -5,7 +5,7 @@ import {Trans} from '@lingui/macro' import {Shadow} from '#/state/cache/types' import {isInvalidHandle} from 'lib/strings/handles' -import {isAndroid} from 'platform/detection' +import {isIOS} from 'platform/detection' import {atoms as a, useTheme, web} from '#/alf' import {NewskieDialog} from '#/components/NewskieDialog' import {Text} from '#/components/Typography' @@ -23,7 +23,7 @@ export function ProfileHeaderHandle({ return ( <View style={[a.flex_row, a.gap_xs, a.align_center]} - pointerEvents={disableTaps ? 'none' : isAndroid ? 'box-only' : 'auto'}> + pointerEvents={disableTaps ? 'none' : isIOS ? 'auto' : 'box-none'}> <NewskieDialog profile={profile} disabled={disableTaps} /> {profile.viewer?.followedBy && !blockHide ? ( <View style={[t.atoms.bg_contrast_25, a.rounded_xs, a.px_sm, a.py_xs]}> |