From 3f714f8c80b7dab1f152e972c6cc7f6e38ec6383 Mon Sep 17 00:00:00 2001 From: satnaing Date: Mon, 30 Jan 2023 22:00:42 +0630 Subject: [PATCH] refactor: remove unnecessary comment --- src/content/_schemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/_schemas.ts b/src/content/_schemas.ts index b1c4d05..7a4f663 100644 --- a/src/content/_schemas.ts +++ b/src/content/_schemas.ts @@ -2,7 +2,7 @@ import { z } from "astro:content"; export const blogSchema = z.object({ author: z.string().optional(), - pubDatetime: z.date(), // z.string().datetime() only available in Zod v3.20.2 + pubDatetime: z.date(), title: z.string(), postSlug: z.string().optional(), featured: z.boolean().optional(),