diff --git a/apps/mobile/src/components/GalleryTouchableOpacity.tsx b/apps/mobile/src/components/GalleryTouchableOpacity.tsx index b63e9016d..c8f8a8f33 100644 --- a/apps/mobile/src/components/GalleryTouchableOpacity.tsx +++ b/apps/mobile/src/components/GalleryTouchableOpacity.tsx @@ -13,6 +13,7 @@ import { GalleryElementTrackingProps, useTrack } from '~/shared/contexts/Analyti export type GalleryTouchableOpacityProps = { withoutFeedback?: boolean; + activeOpacity?: number; } & GalleryElementTrackingProps & TouchableOpacityProps; @@ -25,6 +26,7 @@ export function GalleryTouchableOpacity({ onPress, properties, withoutFeedback, + activeOpacity = 0.2, ...props }: GalleryTouchableOpacityProps) { const track = useTrack(); @@ -62,7 +64,7 @@ export function GalleryTouchableOpacity({ } return ( - + {children} );