diff --git a/cmd/pm/tasks/gitTask.go b/cmd/pm/tasks/gitTask.go index 72451f0..5ed1515 100644 --- a/cmd/pm/tasks/gitTask.go +++ b/cmd/pm/tasks/gitTask.go @@ -60,7 +60,7 @@ func (t *GitTask) Questions(interfaceType InterfaceType) Questions { huh.NewGroup( huh.NewSelect[string]().Key("git_interface_used"). Title("What Git Interface did you use for the task?"). - Description("If "). + Description("If you used multiple interfaces, select the one you relied on most for this task."). Options( huh.Option[string]{Value: "cli", Key: "Command Line Interface"}, huh.Option[string]{Value: "tui", Key: "Terminal User Interface"}, @@ -71,7 +71,7 @@ func (t *GitTask) Questions(interfaceType InterfaceType) Questions { huh.NewGroup( huh.NewSelect[string]().Key("git_interface_normally"). Title("What Git Interface do you normally use?"). - Description("If "). + Description("If you regularly use multiple interfaces, select the one you prefer most."). Options( huh.Option[string]{Value: "cli", Key: "Command Line Interface"}, huh.Option[string]{Value: "tui", Key: "Terminal User Interface"},