Remove className locale

This commit is contained in:
Minseo Lee 2024-08-28 10:13:11 +09:00
parent d80739a203
commit d7734d0493
5 changed files with 6 additions and 14 deletions

View file

@ -12,12 +12,7 @@ export function CountriesTable({ ...props }: MetricsTableProps) {
const renderLink = ({ x: code }) => {
return (
<FilterLink
id="country"
className={locale}
value={countryNames[code] && code}
label={formatCountry(code)}
>
<FilterLink id="country" value={countryNames[code] && code} label={formatCountry(code)}>
<TypeIcon type="country" value={code?.toLowerCase()} />
</FilterLink>
);