Skip to content

Commit 15d2c4f

Browse files
committed
checkpoint at 2026-04-07T07:35:47-0400
1 parent bc9c811 commit 15d2c4f

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

bin/chezmoi

33.1 MB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@shikijs/transformers": "^4.0.2",
2727
"@sindresorhus/slugify": "^3.0.0",
2828
"@tailwindcss/vite": "^4.2.2",
29-
"astro": "6.1.2",
29+
"astro": "6.1.4",
3030
"astro-icon": "^1.1.5",
3131
"markdown-it": "^14.1.1",
3232
"rehype-external-links": "^3.0.0",

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/index.astro

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,13 @@ const renderedRecommendations = await Promise.all(
228228
Date.parse(b.job.data.startDate.toString()) -
229229
Date.parse(a.job.data.startDate.toString()),
230230
)
231-
.map(({ job, Content }) => (
231+
.map(({ job, Content }, index) => (
232232
<li>
233-
<details name="accordion" class="group/accordion">
233+
<details
234+
name="accordion"
235+
class="group/accordion"
236+
open={index === 0 ? true : false}
237+
>
234238
<summary class="grid grid-cols-[1fr_max-content_0.625rem] gap-2">
235239
<header class="flex gap-2">
236240
<Icon

0 commit comments

Comments
 (0)