diff --git a/src/screens/Search/components/SearchHistory.tsx b/src/screens/Search/components/SearchHistory.tsx
index 7e65a0817c..5e62f2cd0a 100644
--- a/src/screens/Search/components/SearchHistory.tsx
+++ b/src/screens/Search/components/SearchHistory.tsx
@@ -1,5 +1,4 @@
-import {Pressable, StyleSheet, View} from 'react-native'
-import {ScrollView as RNGHScrollView} from 'react-native-gesture-handler'
+import {Pressable, ScrollView, StyleSheet, View} from 'react-native'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
@@ -8,6 +7,7 @@ import {makeProfileLink} from '#/lib/routes/links'
import {sanitizeDisplayName} from '#/lib/strings/display-names'
import {Link} from '#/view/com/util/Link'
import {UserAvatar} from '#/view/com/util/UserAvatar'
+import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture'
import {atoms as a, tokens, useBreakpoints, useTheme} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
import {TimesLarge_Stroke2_Corner0_Rounded as XIcon} from '#/components/icons/Times'
@@ -50,57 +50,59 @@ export function SearchHistory({
styles.selectedProfilesContainer,
!gtMobile && styles.selectedProfilesContainerMobile,
]}>
-
- {selectedProfiles.slice(0, 5).map((profile, index) => (
-
- onProfileClick(profile)}
- style={[a.align_center, a.w_full]}>
-
-
- {sanitizeDisplayName(
- profile.displayName || profile.handle,
+
+
+ {selectedProfiles.slice(0, 5).map((profile, index) => (
+
+ onProfileClick(profile)}
+ style={[a.align_center, a.w_full]}>
+
+
+ {sanitizeDisplayName(
+ profile.displayName || profile.handle,
+ )}
+
+
+
-
- onRemoveProfileClick(profile)}
- hitSlop={createHitslop(6)}
- style={styles.profileRemoveBtn}>
-
-
-
- ))}
-
+ onPress={() => onRemoveProfileClick(profile)}
+ hitSlop={createHitslop(6)}
+ style={styles.profileRemoveBtn}>
+
+
+
+ ))}
+
+
)}
{searchHistory.length > 0 && (