@chrishajer’s suggestion worked for me. However, I’d modify it to return an array (rather than empty string) since an array is expected. Returning an empty string causes PHP errors when running Gravity Perks. I expect other plugins that hook into gform_tooltips
could throw the same.
add_filter( 'gform_tooltips', function( $tooltips ) {
return array();
} );