Change FacetWP fSelect number of choices at which text changes to “{n} selected”

add_filter( 'facetwp_render_output', function( $output ) {
    $output['settings']['location']['numDisplayed'] = 1;
    return $output;
});