Skip to content

Commit

Permalink
fix(#84): order of properties
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeethedude committed Oct 24, 2023
1 parent e03156f commit da25a50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ExtendedTags.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ type Link = HTMLAttributes<"link">;
{
props.extend.meta?.map(({ content, httpEquiv, media, name, property }) => (
<meta
name={name}
property={property}
content={content}
http-equiv={httpEquiv}
media={media}
name={name}
property={property}
/>
))
}

0 comments on commit da25a50

Please sign in to comment.