From 379aba5f237fed3e321c6606d9d9ce2cb787b6f7 Mon Sep 17 00:00:00 2001 From: Jonas Date: Fri, 1 Aug 2025 08:12:39 +0200 Subject: [PATCH] fix: loosen-up Feedback schema (#3852) --- docs/.vitepress/types/Feedback.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vitepress/types/Feedback.ts b/docs/.vitepress/types/Feedback.ts index e38050539..7694f2560 100644 --- a/docs/.vitepress/types/Feedback.ts +++ b/docs/.vitepress/types/Feedback.ts @@ -19,9 +19,9 @@ import z from 'zod' export const FeedbackSchema = z.object({ message: z.string().min(5).max(1000), type: z.enum(['suggestion', 'appreciation', 'other']), - page: z.string().min(3).max(20), + page: z.string().min(3).max(25), // For heading based feedback - heading: z.string().min(3).max(20).optional() + heading: z.string().min(3).max(99).optional() }) export interface Option {