Add this on functions.php of your Child Theme or use the Code Snippets plugin:
add_filter(‘tc_caf_filter_posts_order’, ‘tc_modify_ajax_search_query’, 10, 1);
function tc_modify_ajax_search_query($search_parameters)
{
$default_order = “desc”;
return $default_order;
}