diff --git a/src/components/SharedComponents/Buttons/GradientButton.tsx b/src/components/SharedComponents/Buttons/GradientButton.tsx index 587c882dd..00655c3e9 100644 --- a/src/components/SharedComponents/Buttons/GradientButton.tsx +++ b/src/components/SharedComponents/Buttons/GradientButton.tsx @@ -25,9 +25,9 @@ const GradientButton = ( { iconName, iconSize }: Props ) => { - const handleLongPress = _event => { + const handleLongPress = ( event: GestureResponderEvent ) => { if ( onLongPress ) { - onLongPress( _event ); + onLongPress( event ); } };