Skip to content

Commit

Permalink
[Autocomplete] Fix list of countries (mui#19862)
Browse files Browse the repository at this point in the history
  • Loading branch information
FottyM authored and EsoterikStare committed Mar 30, 2020
1 parent a54f6c6 commit e35d208
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/src/pages/components/autocomplete/CountrySelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ const countries = [
{ code: 'BZ', label: 'Belize', phone: '501' },
{ code: 'CA', label: 'Canada', phone: '1', suggested: true },
{ code: 'CC', label: 'Cocos (Keeling) Islands', phone: '61' },
{ code: 'CD', label: 'Congo, Republic of the', phone: '242' },
{ code: 'CD', label: 'Congo, Democratic Republic of the', phone: '243' },
{ code: 'CF', label: 'Central African Republic', phone: '236' },
{ code: 'CG', label: 'Congo, Democratic Republic of the', phone: '243' },
{ code: 'CG', label: 'Congo, Republic of the', phone: '242' },
{ code: 'CH', label: 'Switzerland', phone: '41' },
{ code: 'CI', label: "Cote d'Ivoire", phone: '225' },
{ code: 'CK', label: 'Cook Islands', phone: '682' },
Expand Down
4 changes: 2 additions & 2 deletions docs/src/pages/components/autocomplete/CountrySelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ const countries = [
{ code: 'BZ', label: 'Belize', phone: '501' },
{ code: 'CA', label: 'Canada', phone: '1', suggested: true },
{ code: 'CC', label: 'Cocos (Keeling) Islands', phone: '61' },
{ code: 'CD', label: 'Congo, Republic of the', phone: '242' },
{ code: 'CD', label: 'Congo, Democratic Republic of the', phone: '243' },
{ code: 'CF', label: 'Central African Republic', phone: '236' },
{ code: 'CG', label: 'Congo, Democratic Republic of the', phone: '243' },
{ code: 'CG', label: 'Congo, Republic of the', phone: '242' },
{ code: 'CH', label: 'Switzerland', phone: '41' },
{ code: 'CI', label: "Cote d'Ivoire", phone: '225' },
{ code: 'CK', label: 'Cook Islands', phone: '682' },
Expand Down

0 comments on commit e35d208

Please sign in to comment.