From 1536bf690792ec2c3e31903e6b3654043cd10373 Mon Sep 17 00:00:00 2001 From: Dhruwang Jariwala <67850763+Dhruwang@users.noreply.github.com> Date: Sun, 29 Jun 2025 23:40:30 +0530 Subject: [PATCH] fix: question change issue (#6091) --- packages/types/surveys/types.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/types/surveys/types.ts b/packages/types/surveys/types.ts index 6aeb5e5497..e1b73f9a72 100644 --- a/packages/types/surveys/types.ts +++ b/packages/types/surveys/types.ts @@ -545,7 +545,6 @@ export const ZSurveyConsentQuestion = ZSurveyQuestionBase.extend({ type: z.literal(TSurveyQuestionTypeEnum.Consent), html: ZI18nString.optional(), label: ZI18nString, - placeholder: z.string().optional(), }); export type TSurveyConsentQuestion = z.infer;