Remove leftover console.log in ItemCard

This commit is contained in:
Xevion
2023-01-01 23:04:53 -06:00
parent 55938f5ea9
commit aada613219

View File

@@ -40,11 +40,7 @@ const ItemCard = ({banner, bannerBlur, title, description, links, location}: Ite
return <>
<div ref={itemRef}
className={classNames("item [&:not(:first-child)]:mt-3", active ? "active" : null)}
onClick={() => {
console.log('Overall div!')
navigate();
}
}>
onClick={navigate}>
<DependentImage fill src={banner} blurDataURL={bannerBlur}
className={(loaded) => classNames("object-cover", loaded ? null : "blur-xl")}
placeholder="blur"