Fix duplicate alt attribute on Picture component. #6157
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes
In
packages/integrations/image/components/Picture.astro
on line 44,{...image}
already includes thealt
attribute, so including it again creates a duplicate which causes the output to fail HTML validation:<img alt="" alt="" ...
Removing
{alt}
(see changes below) solves the problem.Testing
Do you really want to add a test to test for duplicate attributes? The current tests should confirm that the
alt
attribute is not missing, which should be sufficient to prove that the{alt}
code mentioned above was superfluous.I ran the tests (thank you for using pnpm!) and they passed. I'm sure you'll run them, too.
Docs
There is no reason for this to be discussed in the docs. It's a simple mistake, and this PR fixes it.