Lighthouse keeps telling me that "Image elements do not have explicit width and height" eventhough i've tried to add it both in css or in img but the problem persists:
img.medium {
max-width: 29rem;
width: 100%;
}
or
<img
src={user.seller.logo}
alt={user.seller.name}
width="100%"
height="auto"
/>
How can i tackle this?