From f25e5eee63599465a894ced796e724d26dbb2846 Mon Sep 17 00:00:00 2001 From: galenwinsor Date: Tue, 2 Jul 2024 12:55:19 -0700 Subject: [PATCH] refactor: make link optional for people --- src/content/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/config.ts b/src/content/config.ts index 73e2a2f..e33d009 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -28,7 +28,7 @@ const people = defineCollection({ schema: z.object({ type: z.string(), name: z.string(), - link: z.string(), + link: z.string().optional(), title: z.string(), avatar: z.string().optional(), institution: z.string(),