File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -356,9 +356,9 @@ func (t *Timer) promptFlowModeInfo() tea.Cmd {
356356 t .taskDescription = ""
357357 fields = append (fields , huh .NewInput ().
358358 Key ("taskDescription" ).
359- Title ("Description (optional - press Enter to skip) " ).
359+ Title ("Description" ).
360360 Value (& t .taskDescription ).
361- Placeholder ("Add details about the task ..." ).
361+ Placeholder ("Optional details..." ).
362362 CharLimit (500 ))
363363
364364 // Add tag selection if pre-defined tags are available
@@ -388,10 +388,8 @@ func (t *Timer) promptFlowModeInfo() tea.Cmd {
388388
389389 // Create separate groups for pagination - one field per page
390390 var groups []* huh.Group
391- totalFields := len (fields )
392- for i , field := range fields {
393- title := fmt .Sprintf ("Flow timer setup (%d/%d)" , i + 1 , totalFields )
394- groups = append (groups , huh .NewGroup (field ).Title (title ))
391+ for _ , field := range fields {
392+ groups = append (groups , huh .NewGroup (field ))
395393 }
396394
397395 form := huh .NewForm (groups ... ).WithWidth (formWidth )
You can’t perform that action at this time.
0 commit comments