Skip to content

Commit 4277bd5

Browse files
committed
refactor: change countries order
1 parent 6caf061 commit 4277bd5

File tree

1 file changed

+2
-2
lines changed
  • src/shared/ui/forms/nodes/base-node-form/constants

1 file changed

+2
-2
lines changed

src/shared/ui/forms/nodes/base-node-form/constants/countries.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export const COUNTRIES = [
2+
{ value: 'XX', label: '🏴‍☠️ Unknown' },
23
{ value: 'AF', label: '🇦🇫 Afghanistan' },
34
{ value: 'AL', label: '🇦🇱 Albania' },
45
{ value: 'DZ', label: '🇩🇿 Algeria' },
@@ -190,8 +191,7 @@ export const COUNTRIES = [
190191
{ value: 'VN', label: '🇻🇳 Vietnam' },
191192
{ value: 'YE', label: '🇾🇪 Yemen' },
192193
{ value: 'ZM', label: '🇿🇲 Zambia' },
193-
{ value: 'ZW', label: '🇿🇼 Zimbabwe' },
194-
{ value: 'XX', label: '🏴‍☠️ Unknown' }
194+
{ value: 'ZW', label: '🇿🇼 Zimbabwe' }
195195
] as const
196196

197197
export type CountryCode = (typeof COUNTRIES)[number]['value']

0 commit comments

Comments
 (0)