Skip to content

Commit dedcc4e

Browse files
committed
chore: pnpm format
1 parent 02f5e46 commit dedcc4e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/components/changelog/Releases.astro

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,12 @@ const headings = entries.map((entry) => {
2323
---
2424

2525
<StarlightPage frontmatter={{ title }} {headings}>
26-
{entries.map((entry) => <Release id={entry.id.substring(entry.id.lastIndexOf("/") + 1)} {entry} /><hr/>)}
26+
{
27+
entries.map((entry) => (
28+
<>
29+
<Release id={entry.id.substring(entry.id.lastIndexOf("/") + 1)} {entry} />
30+
<hr />
31+
</>
32+
))
33+
}
2734
</StarlightPage>

0 commit comments

Comments
 (0)