add back US to countries list

This commit is contained in:
Tyler Shipe 2021-06-12 17:26:56 -04:00
parent 8171b25167
commit 69bb0e02d3
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ const SANCTIONED_COUNTRIES = [
{ country: 'Venezuela', code: 'VE' },
{ country: 'Yemen', code: 'YE' },
{ country: 'Zimbabwe', code: 'ZW' },
{ country: 'United States', code: 'US' },
]
const SANCTIONED_COUNTRY_CODES = SANCTIONED_COUNTRIES.map(({ code }) => code)