From 0a5e16dee73639fc3250ea2c2f77438766d2fc52 Mon Sep 17 00:00:00 2001 From: Darshan Poudel <127468609+Darshan808@users.noreply.github.com> Date: Thu, 16 May 2024 09:17:48 +0545 Subject: [PATCH] Update form.ts to handle null discription --- src/types/form.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/form.ts b/src/types/form.ts index 4fa2d17..a1b0ec5 100644 --- a/src/types/form.ts +++ b/src/types/form.ts @@ -9,7 +9,7 @@ export interface CustomizableOption extends Option { export interface BaseField { id: string label: string - description?: string + description?: string | null required: boolean }