update astro

This commit is contained in:
Morten Olsen
2025-02-25 14:43:00 +01:00
parent b34cc2f1da
commit 428a7de4a9
28 changed files with 10005 additions and 5944 deletions

View File

@@ -4,7 +4,7 @@ class References {
public find = () => getCollection('references')
public get = async (slug: string) => {
const collection = await this.find()
return collection.find((entry) => entry.slug === slug)
return collection.find((entry) => entry.data.slug === slug)
}
}