Fix type error in src/components/SharedComponents/Buttons/GradientButton.tsx.

This commit is contained in:
Corey Farwell
2025-11-11 01:21:04 -05:00
parent 2ef310e0a4
commit fa1333f005

View File

@@ -25,9 +25,9 @@ const GradientButton = ( {
iconName,
iconSize
}: Props ) => {
const handleLongPress = _event => {
const handleLongPress = ( event: GestureResponderEvent ) => {
if ( onLongPress ) {
onLongPress( _event );
onLongPress( event );
}
};