Skip to content

Commit e2bea86

Browse files
committed
chore: prettier
1 parent 3af2280 commit e2bea86

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

src/app/conf/2024/schedule/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export default function SessionPage({ params }: SessionProps) {
122122
<div className="flex flex-wrap lg:flex-row flex-col gap-5 mt-8">
123123
{event.speakers!.map(speaker => (
124124
<div
125-
className={`flex items-center gap-3 w-full ${event?.speakers?.length || 0 > 1 ? "max-w-[320px]": ""}`}
125+
className={`flex items-center gap-3 w-full ${event?.speakers?.length || 0 > 1 ? "max-w-[320px]" : ""}`}
126126
key={speaker.username}
127127
>
128128
<Avatar

src/app/conf/_components/schedule/schedule-list.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ function getSessionsByDay(
6363
}
6464
sessionsByDay[day] = {
6565
...sessionsByDay[day],
66-
[date]: sessions.sort((a, b) => (a?.venue ?? "").localeCompare(b?.venue ?? "")),
66+
[date]: sessions.sort((a, b) =>
67+
(a?.venue ?? "").localeCompare(b?.venue ?? ""),
68+
),
6769
}
6870
})
6971

src/app/conf/_components/schedule/session-list.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ function getSessionsByDay(
7878
}
7979
sessionsByDay[day] = {
8080
...sessionsByDay[day],
81-
[date]: sessions.sort((a, b) => (a?.venue ?? "").localeCompare(b?.venue ?? "")),
81+
[date]: sessions.sort((a, b) =>
82+
(a?.venue ?? "").localeCompare(b?.venue ?? ""),
83+
),
8284
}
8385
})
8486

src/app/conf/_components/speakers/avatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const Avatar: FC<Props> = ({ avatar, name, className, href }) => {
2020
src={avatar}
2121
alt={`${name} Profile Image`}
2222
style={{
23-
margin: 0
23+
margin: 0,
2424
}}
2525
/>
2626
) : (

0 commit comments

Comments
 (0)