change notes sidebars behavior

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-04-24 23:53:02 +02:00
parent 97bdfd9a6e
commit 294c4e3acd
5 changed files with 87 additions and 25 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ const notes = defineCollection({
schema: z.object({
title: z.string(),
description: z.string(),
category: z.string(),
category: z.string().optional(),
tags: z.array(z.string()).default([]),
publishDate: z.coerce.date(),
}),