Change labels in the listing form

Hi,

Sorry for the late reply. I replied via email but will also post the code snippet here in case if someone has the same issue:

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['title']['label'] = 'custom label';

		return $form;
	},
	1000
);