Skip to content

Commit

Permalink
Updated country list.
Browse files Browse the repository at this point in the history
  • Loading branch information
zadoev-ra committed Mar 15, 2024
1 parent f612870 commit 466ceb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/ApplicationForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const country = yup.string().required().test(
lockedCountryErr,
(value) => [
// https://en.wikipedia.org/wiki/European_Union_tax_haven_blacklist
'AS', 'AI', 'BB', 'DM', 'FJ', 'GU', 'PA', 'SC', 'TT', 'PW', 'VI', 'VU',
'WS',
'AG', 'AI', 'AS', 'BS', 'BZ', 'FJ', 'GU', 'PA', 'PW', 'SC', 'TC', 'TT',
'VI', 'VU', 'WS',
// https://en.wikipedia.org/wiki/United_States_sanctions#Countries
// ... Combined, the Treasury Department, the Commerce Department and the
// State Department list embargoes against 20 countries or territories:
Expand All @@ -51,7 +51,7 @@ const country = yup.string().required().test(
'AZ', 'TM', 'SA', 'NE',
// High taxes.
// Not included in any list above:
'IL', 'LV', 'TR', 'US',
'EE', 'ES', 'CH', 'IL', 'IT', 'LV', 'TR', 'US',
].indexOf(value) === -1,
);

Expand Down

0 comments on commit 466ceb2

Please sign in to comment.