Skip to content

Commit 9e176b6

Browse files
committed
Make labels and headings more minimal
1 parent f13bb35 commit 9e176b6

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

timer/timer.go

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)