Skip to content

Commit

Permalink
Apply Prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantheon Bot committed Dec 18, 2024
1 parent 2975738 commit 45ede8d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/releases.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Releases = ({ data }) => {
(release) => {
const publishedDate = release.node.published_at;
return publishedDate && isAfter(parseISO(publishedDate), oneYearAgo);
}
},
);

return (
Expand All @@ -32,7 +32,9 @@ const Releases = ({ data }) => {
{release.node.tag_name}
</h3>
<MDXProvider components={shortcodes}>
<MDXRenderer>{release.node.fields.markdownBody.childMdx.body}</MDXRenderer>
<MDXRenderer>
{release.node.fields.markdownBody.childMdx.body}
</MDXRenderer>
</MDXProvider>
<hr />
</div>
Expand Down

0 comments on commit 45ede8d

Please sign in to comment.