diff --git a/frontend/app/components/ui/CountryFlag/CountryFlag.js b/frontend/app/components/ui/CountryFlag/CountryFlag.js
index 5f1497e1d..8b04d2ba1 100644
--- a/frontend/app/components/ui/CountryFlag/CountryFlag.js
+++ b/frontend/app/components/ui/CountryFlag/CountryFlag.js
@@ -1,22 +1,17 @@
import React from 'react';
import cn from 'classnames';
-import { countries } from 'App/constants';
import { Icon } from 'UI';
-import stl from './countryFlag.module.css';
const CountryFlag = ({
userCity = '',
- userState = '',
country = '',
className = '',
style = {},
- label = false,
width = 22,
height = 15,
}) => {
const knownCountry = !!country && country !== 'UN';
const countryFlag = knownCountry ? country.toLowerCase() : '';
- const countryName = knownCountry ? countries[country] : 'Unknown Country';
return (
@@ -33,9 +28,7 @@ const CountryFlag = ({
)}
- {userCity && {userCity},}
- {userState && {userState},}
- {knownCountry && label && {countryName}
}
+ {userCity && {userCity}}
);
};