fix(docs): remove title as alt text (#2922)

This commit is contained in:
romil-soni 2025-04-20 14:11:13 +05:30 committed by GitHub
parent c6738ce2e5
commit d9576c5534
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ function Feature({ imageUrl, title, description }) {
<div className={classnames("col col--4", styles.feature)}> <div className={classnames("col col--4", styles.feature)}>
{imgUrl && ( {imgUrl && (
<div className="text--center"> <div className="text--center">
<img className={styles.featureImage} src={imgUrl} alt={title} /> <img className={styles.featureImage} src={imgUrl} alt="" />
</div> </div>
)} )}
<h3>{title}</h3> <h3>{title}</h3>