From 638d2dd670636f25766f73ebffc0873dc1772048 Mon Sep 17 00:00:00 2001 From: Robin Olsen Date: Tue, 24 Mar 2026 11:08:18 +0100 Subject: [PATCH] remove question asking if task was completed as we are getting this automaticaly --- cmd/pm/tasks/base.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cmd/pm/tasks/base.go b/cmd/pm/tasks/base.go index 525284f..04e1011 100644 --- a/cmd/pm/tasks/base.go +++ b/cmd/pm/tasks/base.go @@ -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 {