remove question asking if task was completed as we are getting this automaticaly
This commit is contained in:
@@ -119,9 +119,6 @@ func ClearIssues(app *App) error {
|
|||||||
|
|
||||||
func BaseQuestions(interfaceType InterfaceType) Questions {
|
func BaseQuestions(interfaceType InterfaceType) Questions {
|
||||||
return Questions{
|
return Questions{
|
||||||
huh.NewGroup(
|
|
||||||
huh.NewConfirm().Key("task_completed").
|
|
||||||
Title("Were you able to complete the task?")),
|
|
||||||
huh.NewGroup(
|
huh.NewGroup(
|
||||||
huh.NewSelect[int]().Key("interface_difficulty").
|
huh.NewSelect[int]().Key("interface_difficulty").
|
||||||
Title("How difficult was it to use the interface?").
|
Title("How difficult was it to use the interface?").
|
||||||
@@ -150,7 +147,7 @@ func BaseQuestions(interfaceType InterfaceType) Questions {
|
|||||||
type Keys []string
|
type Keys []string
|
||||||
|
|
||||||
func BaseKeys() Keys {
|
func BaseKeys() Keys {
|
||||||
return []string{"task_completed", "interface_difficulty", "task_difficulty"}
|
return []string{"interface_difficulty", "task_difficulty"}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (k Keys) With(keys ...string) Keys {
|
func (k Keys) With(keys ...string) Keys {
|
||||||
|
|||||||
Reference in New Issue
Block a user