diff options
Diffstat (limited to 'src/view/com/composer/photos/SelectPhotoBtn.tsx')
-rw-r--r-- | src/view/com/composer/photos/SelectPhotoBtn.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/view/com/composer/photos/SelectPhotoBtn.tsx b/src/view/com/composer/photos/SelectPhotoBtn.tsx index aaf0477c7..081456f75 100644 --- a/src/view/com/composer/photos/SelectPhotoBtn.tsx +++ b/src/view/com/composer/photos/SelectPhotoBtn.tsx @@ -9,8 +9,7 @@ import {useAnalytics} from 'lib/analytics/analytics' import {isDesktopWeb} from 'platform/detection' import {usePhotoLibraryPermission} from 'lib/hooks/usePermissions' import {GalleryModel} from 'state/models/media/gallery' - -const HITSLOP = {left: 10, top: 10, right: 10, bottom: 10} +import {HITSLOP_10} from 'lib/constants' type Props = { gallery: GalleryModel @@ -36,7 +35,7 @@ export function SelectPhotoBtn({gallery}: Props) { testID="openGalleryBtn" onPress={onPressSelectPhotos} style={styles.button} - hitSlop={HITSLOP} + hitSlop={HITSLOP_10} accessibilityRole="button" accessibilityLabel="Gallery" accessibilityHint="Opens device photo gallery"> |