use Country instead of select country

This commit is contained in:
Ben Wheeler 2019-08-20 02:37:17 +02:00
parent 58867dc249
commit 512c267449

View file

@ -29,7 +29,7 @@ class CountryStep extends React.Component {
this.countryOptions = [...countryData.registrationCountryOptions]; this.countryOptions = [...countryData.registrationCountryOptions];
this.countryOptions.unshift({ this.countryOptions.unshift({
disabled: true, disabled: true,
label: this.props.intl.formatMessage({id: 'registration.selectCountry'}), label: this.props.intl.formatMessage({id: 'general.country'}),
value: 'null' value: 'null'
}); });
} }