fix unknown icon and country render link

This commit is contained in:
Francis Cao 2024-11-25 13:46:38 -08:00
parent d15bc58a1d
commit b61e14962a
4 changed files with 21 additions and 39 deletions

View file

@ -12,9 +12,12 @@ export function TypeIcon({
return (
<>
<img
src={`${process.env.basePath || ''}/images/${type}/${
value?.replaceAll(' ', '-').toLowerCase() || 'unknown'
}.png`}
src={`${process.env.basePath || ''}/images/${type}/${value
?.replaceAll(' ', '-')
.toLowerCase()}.png`}
onError={e => {
e.currentTarget.src = `${process.env.basePath || ''}/images/${type}/unknown.png`;
}}
alt={value}
width={type === 'country' ? undefined : 16}
height={type === 'country' ? undefined : 16}