chore: start form boolean to checkbox

This commit is contained in:
Joel
2025-07-30 10:53:12 +08:00
parent bd04ddd544
commit 6d03a15e0f
24 changed files with 50 additions and 27 deletions

View File

@ -18,6 +18,9 @@ export const userInputsFormToPromptVariables = (useInputs: UserInputFormItem[] |
if (item.number)
return ['number', item.number]
if (item.checkbox)
return ['boolean', item.checkbox]
if (item.file)
return ['file', item.file]