Some corrections with types and undeleted file
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 18m1s

This commit is contained in:
2025-08-14 09:48:52 +09:30
parent 63e0e1fd28
commit 1f45a74b2a
19 changed files with 54 additions and 105 deletions

View File

@@ -2,7 +2,7 @@
import type { CollectionEntry } from "astro:content";
import { render } from "astro:content";
import Link from "@components/Link.astro";
import TextLink from "@components/TextLink.astro";
interface Props {
award: CollectionEntry<"awards">;
@@ -21,7 +21,7 @@ const { Content } = await render(award);
{award.data.giver} ({award.data.date.getFullYear()})
</span>
<dd class="pt-2">
<Content components={{ a: Link }} />
<Content components={{ a: TextLink }} />
</dd>
</dt>
</dl>