Country International Drop Down Remove Empty Option

When you change the setting to international the drop down populates all the countries including an empty I have used the filter -

add_filter('gform_countries', function($countries) {
    return array('United States', 'Canada');
}); 

to limit to just these two countries and I have set Canada to be selected by default but it still creates an emplty - How can I remove that empty option so that the drop down only includes US and Canada?

<select name="input_5.6" id="input_3_5_6" aria-required="true">
  <option value=""></option>
  <option value="United States">United States</option>
  <option value="Canada" selected="selected">Canada</option>
</select>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.