remove alt from img

This commit is contained in:
plebeius.eth
2024-04-13 20:53:25 +02:00
parent 3ad540f17e
commit 7cf6beda5c
+1 -1
View File
@@ -11,7 +11,7 @@ const ImageBanner = () => {
return `assets/banners/banner-${randomBannerIndex}.jpg`;
});
return <img src={imagePath} alt='banner' />;
return <img src={imagePath} alt='' />;
};
const BoardBanner = () => {