Skip to content

Commit 3be5991

Browse files
committed
style: fix formatting in lectures.astro to pass Prettier check [#41]
1 parent 0b00648 commit 3be5991

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/pages/lectures.astro

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,13 @@ for (const lec of lectures) {
3232
<>
3333
<h2>{course}</h2>
3434
<div class="Items">
35-
{
36-
list.map((lec) => (
37-
<a href={lec.link} target="_blank">
38-
<RowCard title={lec.title} icon="mdi mdi-video" />
39-
</a>
40-
))
41-
}
35+
{list.map((lec) => (
36+
<a href={lec.link} target="_blank">
37+
<RowCard title={lec.title} icon="mdi mdi-video" />
38+
</a>
39+
))}
4240
</div>
43-
<div style="margin-top:2.5rem"></div>
41+
<div style="margin-top:2.5rem" />
4442
</>
4543
))
4644
}

0 commit comments

Comments
 (0)