From ac0e3e807d09fa6c40c68905e9d198d66091df87 Mon Sep 17 00:00:00 2001 From: Joel Date: Wed, 4 Sep 2024 17:55:45 +0800 Subject: [PATCH] chore: paragrpah form type --- types/app.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/app.ts b/types/app.ts index 5040d2d..3d62c4f 100644 --- a/types/app.ts +++ b/types/app.ts @@ -37,6 +37,8 @@ export type UserInputFormItem = { 'text-input': TextTypeFormItem } | { 'select': SelectTypeFormItem +} | { + 'paragraph': TextTypeFormItem } export const MessageRatings = ['like', 'dislike', null] as const