Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh authored and astrobot-houston committed Oct 11, 2023
1 parent b2ae9ee commit a964a14
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/astro/components/Picture.astro
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ if (fallbackImage.srcSet.values.length > 0) {
{
Object.entries(optimizedImages).map(([_, image]) => (
<source
srcset={`${image.src}${image.srcSet.values.length > 0 ? ' , ' + image.srcSet.attribute : ''}`}
type={"image/" + image.options.format}
srcset={`${image.src}${
image.srcSet.values.length > 0 ? ' , ' + image.srcSet.attribute : ''
}`}
type={'image/' + image.options.format}
/>
))
}
Expand Down

0 comments on commit a964a14

Please sign in to comment.