Skip to content

Commit

Permalink
fix: remove alt attr
Browse files Browse the repository at this point in the history
  • Loading branch information
KnownBlackHat committed Oct 10, 2023
1 parent 7c5cd93 commit cc8896e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MediaCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default function MediaCard (props) {
<div className="heading p-2 m-2 font-bold "> {headline} </div>
</div>

<div className="text-white text-center mb-4"><a className="p-2 bg-blue-700 rounded" alt={media??image} href={mediaShrinkLink} target="_blank" rel="noreferrer">Get it</a></div>
<div className="text-white text-center mb-4"><a className="p-2 bg-blue-700 rounded" href={mediaShrinkLink} target="_blank" rel="noreferrer">Get it</a></div>
</div>
)
}
Expand Down

0 comments on commit cc8896e

Please sign in to comment.