Merge pull request #1115 from briancao/master

Fix  'Unknown' country bug Closes #1102
This commit is contained in:
Mike Cao 2022-04-20 08:44:22 -07:00 committed by GitHub
commit b1fd4aab47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,6 @@ import React from 'react';
import Link from 'next/link';
import classNames from 'classnames';
import usePageQuery from 'hooks/usePageQuery';
import { safeDecodeURI } from 'lib/url';
import Icon from './Icon';
import External from 'assets/arrow-up-right-from-square.svg';
import styles from './FilterLink.module.css';
@ -21,7 +20,7 @@ export default function FilterLink({ id, value, label, externalUrl }) {
[styles.active]: active && selected,
})}
>
{safeDecodeURI(label || value)}
{label || value}
</a>
</Link>
{externalUrl && (