mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-30 18:09:40 +05:00
fix: missing alt text property errors in console
This commit is contained in:
parent
b10a4fabb0
commit
f609de25f9
5 changed files with 5 additions and 5 deletions
|
@ -36,7 +36,7 @@ export const ReleaseLink169 = (props: any) => {
|
|||
<Image
|
||||
src={props.image}
|
||||
fill={true}
|
||||
alt={props.title}
|
||||
alt={props.title || ""}
|
||||
className="-z-[1] object-cover"
|
||||
sizes="
|
||||
(max-width: 768px) 300px,
|
||||
|
|
|
@ -33,7 +33,7 @@ export const ReleaseLink169Poster = (props: any) => {
|
|||
src={props.image}
|
||||
height={250}
|
||||
width={250}
|
||||
alt={props.title}
|
||||
alt={props.title || ""}
|
||||
className="object-cover aspect-[9/16] h-auto w-24 md:w-32 lg:w-48 rounded-md"
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -43,7 +43,7 @@ export const ReleaseLink169Related = (props: any) => {
|
|||
src={props.image}
|
||||
height={250}
|
||||
width={250}
|
||||
alt={props.title}
|
||||
alt={props.title || ""}
|
||||
className="object-cover aspect-[9/16] lg:aspect-[12/16] h-auto w-24 md:w-32 lg:w-48 rounded-md"
|
||||
/>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue