update queries for event / session properties and values screens

This commit is contained in:
Francis Cao 2024-08-21 13:51:28 -07:00
parent 2c0ba65ba0
commit 917916c224
5 changed files with 59 additions and 40 deletions

View file

@ -13,7 +13,7 @@ export function TypeIcon({
<>
<img
src={`${process.env.basePath || ''}/images/${type}/${
value.replaceAll(' ', '-').toLowerCase() || 'unknown'
value?.replaceAll(' ', '-').toLowerCase() || 'unknown'
}.png`}
alt={value}
width={type === 'country' ? undefined : 16}