Fix another bug with the notes URLs.

This commit is contained in:
2026-05-15 16:50:59 -07:00
parent 8f299c9631
commit 83f3bbdd1e

View File

@@ -41,7 +41,7 @@ const pathname = Astro.url.pathname.replace(import.meta.env.BASE_URL, '/');
return (
<div>
<a href={node.id} class={linkClasses}>
<a href={`/notes/${node.id}`} class={linkClasses}>
{node.title || leader}
</a>
</div>