From f9f346edde323c205033ecbaf14c3eda03355878 Mon Sep 17 00:00:00 2001 From: Honahec Date: Thu, 25 Dec 2025 15:54:16 +0800 Subject: [PATCH] fix: delete token verification in DrawRequest --- lib/schemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/schemas.ts b/lib/schemas.ts index 23db529..7fe3850 100644 --- a/lib/schemas.ts +++ b/lib/schemas.ts @@ -13,7 +13,7 @@ export const DrawDataSchema = z.object({ }); export const DrawRequestSchema = z.object({ - token: z.string().min(1), + token: z.string().optional(), data: DrawDataSchema, });