fix an assorted set of issues, more info on linear

This commit is contained in:
Amruth Pillai
2023-11-22 22:50:21 +01:00
parent 4baecb22e9
commit 4687091ebd
7 changed files with 57 additions and 50 deletions

View File

@ -3,7 +3,7 @@ import { z } from "zod";
export const projectSchema = z.object({
Title: z.string(),
Description: z.string(),
Url: z.string().url(),
Url: z.literal("").or(z.string().url()).optional(),
"Started On": z.string(),
"Finished On": z.string().optional(),
});