remove question asking if task was completed as we are getting this automaticaly

This commit is contained in:
Robin Olsen
2026-03-24 11:08:18 +01:00
parent a998a6bfd9
commit 638d2dd670

View File

@@ -119,9 +119,6 @@ func ClearIssues(app *App) error {
func BaseQuestions(interfaceType InterfaceType) Questions {
return Questions{
huh.NewGroup(
huh.NewConfirm().Key("task_completed").
Title("Were you able to complete the task?")),
huh.NewGroup(
huh.NewSelect[int]().Key("interface_difficulty").
Title("How difficult was it to use the interface?").
@@ -150,7 +147,7 @@ func BaseQuestions(interfaceType InterfaceType) Questions {
type Keys []string
func BaseKeys() Keys {
return []string{"task_completed", "interface_difficulty", "task_difficulty"}
return []string{"interface_difficulty", "task_difficulty"}
}
func (k Keys) With(keys ...string) Keys {