File tree Expand file tree Collapse file tree
packages/opencode/src/question Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export namespace Question {
1010
1111 export const Option = z
1212 . object ( {
13- label : z . string ( ) . max ( 30 ) . describe ( "Display text (1-5 words, concise)" ) ,
13+ label : z . string ( ) . describe ( "Display text (1-5 words, concise)" ) ,
1414 description : z . string ( ) . describe ( "Explanation of choice" ) ,
1515 } )
1616 . meta ( {
@@ -21,7 +21,7 @@ export namespace Question {
2121 export const Info = z
2222 . object ( {
2323 question : z . string ( ) . describe ( "Complete question" ) ,
24- header : z . string ( ) . max ( 30 ) . describe ( "Very short label (max 30 chars)" ) ,
24+ header : z . string ( ) . describe ( "Very short label (max 30 chars)" ) ,
2525 options : z . array ( Option ) . describe ( "Available choices" ) ,
2626 multiple : z . boolean ( ) . optional ( ) . describe ( "Allow selecting multiple choices" ) ,
2727 custom : z . boolean ( ) . optional ( ) . describe ( "Allow typing a custom answer (default: true)" ) ,
You can’t perform that action at this time.
0 commit comments