diff --git a/packages/circuit-ui/components/PhoneNumberInput/PhoneNumberInputService.ts b/packages/circuit-ui/components/PhoneNumberInput/PhoneNumberInputService.ts index e78b011571..d2aa1e4e24 100644 --- a/packages/circuit-ui/components/PhoneNumberInput/PhoneNumberInputService.ts +++ b/packages/circuit-ui/components/PhoneNumberInput/PhoneNumberInputService.ts @@ -46,7 +46,7 @@ export function mapCountryCodeOptions( const displayName = new Intl.DisplayNames(locale, { type: 'region' }); return countryCodeOptions .map(({ code, country }) => { - const countryName = displayName.of(country); + const countryName = country ? displayName.of(country) : country; return { label: countryName ? `${countryName} (${code})` : code, value: code,