From 5540cf654cbce7955e6d7745d11a9eb6bb10c77d Mon Sep 17 00:00:00 2001 From: Bernt Christian Egeland Date: Sun, 20 Aug 2023 16:23:59 +0000 Subject: [PATCH] nullable --- src/server/api/routers/adminRoute.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/api/routers/adminRoute.ts b/src/server/api/routers/adminRoute.ts index 8fceb1ff..f2ca005f 100644 --- a/src/server/api/routers/adminRoute.ts +++ b/src/server/api/routers/adminRoute.ts @@ -626,7 +626,7 @@ export const adminRouter = createTRPCRouter({ plID: z.number().optional(), plRecommend: z.boolean().default(true), plBirth: z.number().optional(), - comment: z.string().optional(), + comment: z.string().nullable().optional(), identity: z.string().optional(), endpoints: z.string(), })