From 502bcad7017d72fb23c40a268b1e220f892db7da Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 18 Jun 2024 14:09:40 -0500 Subject: Disable newskie dialog tap in hover card web (#4562) --- src/screens/Profile/Header/Handle.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/screens/Profile/Header/Handle.tsx') diff --git a/src/screens/Profile/Header/Handle.tsx b/src/screens/Profile/Header/Handle.tsx index 4f438a286..268b7350f 100644 --- a/src/screens/Profile/Header/Handle.tsx +++ b/src/screens/Profile/Header/Handle.tsx @@ -12,8 +12,10 @@ import {Text} from '#/components/Typography' export function ProfileHeaderHandle({ profile, + disableTaps, }: { profile: Shadow + disableTaps?: boolean }) { const t = useTheme() const invalidHandle = isInvalidHandle(profile.handle) @@ -21,8 +23,8 @@ export function ProfileHeaderHandle({ return ( - + pointerEvents={disableTaps ? 'none' : isAndroid ? 'box-only' : 'auto'}> + {profile.viewer?.followedBy && !blockHide ? ( -- cgit 1.4.1