diff --git a/src/components/Low/CountrySelect.tsx b/src/components/Low/CountrySelect.tsx index 838395da..b9a5a110 100644 --- a/src/components/Low/CountrySelect.tsx +++ b/src/components/Low/CountrySelect.tsx @@ -42,7 +42,9 @@ export default function CountrySelect({value, disabled = false, onChange}: Props displayValue={(code: string) => { const country = countries[code as unknown as keyof TCountries]; - return `${countryCodes.findOne("countryCode" as any, code).flag} ${country.name} (+${country.phone})`; + return `${countryCodes.findOne("countryCode" as any, code)?.flag || ""} ${country?.name || "N/A"} (+${ + country?.phone || "N/A" + })`; }} />