Add multiple select category

Ok I found the conversation: How to change categories field type in the filtrable zone and you are suggesting to use this snippet code.

But i have trouble with the click (working but not well on mac), any solution for using with multiple choice. Thx a lot

add_filter(
	'hivepress/v1/forms/listing_filter',
	function( $form_args, $form ) {
		
		if(isset($form_args['fields']['_category'])){
			$form_args['fields']['_category'] = array_merge(
				$form_args['fields']['_category'],
				[
					'label' => 'Categories',
					'type' => 'select',
				]
			);
		}

		return $form_args;
	},
	1000,
	2
);