fix image group icon not loading

This commit is contained in:
Ajay Bura 2025-09-13 14:27:46 +05:30
parent 7ff18a3ed3
commit 778c3f2eb3

View file

@ -121,9 +121,9 @@ export function ImageGroupIcon<T extends string>({
return ( return (
<SidebarBtn active={active} id={id} label={label} onClick={onClick}> <SidebarBtn active={active} id={id} label={label} onClick={onClick}>
{url ? ( {url ? (
<Icon src={Icons.Photo} filled={active} />
) : (
<img className={css.SidebarBtnImg} src={url} alt={label} /> <img className={css.SidebarBtnImg} src={url} alt={label} />
) : (
<Icon src={Icons.Photo} filled={active} />
)} )}
</SidebarBtn> </SidebarBtn>
); );