Skip to content

Commit 3eee4f6

Browse files
committed
fix prettier issue
1 parent 3cd51d6 commit 3eee4f6

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

2025/src/components/Sessions/Session.astro

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@ type Props = {
1111
image_url?: string;
1212
};
1313
14-
const { session_id,speaker_name, title, abstract, self_introduction, image_url } =
15-
Astro.props;
14+
const {
15+
session_id,
16+
speaker_name,
17+
title,
18+
abstract,
19+
self_introduction,
20+
image_url,
21+
} = Astro.props;
1622
---
1723

1824
<Card class="mb-5 p-8">
@@ -32,9 +38,12 @@ const { session_id,speaker_name, title, abstract, self_introduction, image_url }
3238
</div>
3339
<div class="flex-1 text-center md:text-left">
3440
<div class="mb-3">
35-
<h3 id={session_id} class="mb-2 text-2xl font-bold text-gray-900 md:text-3xl">
41+
<h3
42+
id={session_id}
43+
class="mb-2 text-2xl font-bold text-gray-900 md:text-3xl"
44+
>
3645
<a href={`#${session_id}`} class="hover:underline">
37-
{speaker_name}
46+
{speaker_name}
3847
</a>
3948
</h3>
4049
</div>

0 commit comments

Comments
 (0)