From 92393866389ffa752df161c432c96176c382ece7 Mon Sep 17 00:00:00 2001 From: veryCrunchy <verycrunchydev@gmail.com> Date: Tue, 23 Apr 2024 02:01:20 +0200 Subject: [PATCH] chore: lower sponsor description minimum --- schemas/sponsor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/sponsor.ts b/schemas/sponsor.ts index 21ac7d0..73b8179 100644 --- a/schemas/sponsor.ts +++ b/schemas/sponsor.ts @@ -7,6 +7,6 @@ export default z.object({ .describe("; left | center | right"), image: z.string().min(5).describe("banner"), code: z.string().describe("to show in the code label"), - description: z.string().min(100).describe("shown underneath the image"), + description: z.string().min(50).describe("shown underneath the image"), url: z.string().min(5).describe("that the button leads to"), });