Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Robin Olsen
2026-03-16 13:28:24 +01:00
committed by GitHub
parent f464653246
commit b7c9c17bfe

View File

@@ -60,7 +60,7 @@ func (t *GitTask) Questions(interfaceType InterfaceType) Questions {
huh.NewGroup( huh.NewGroup(
huh.NewSelect[string]().Key("git_interface_used"). huh.NewSelect[string]().Key("git_interface_used").
Title("What Git Interface did you use for the task?"). 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( Options(
huh.Option[string]{Value: "cli", Key: "Command Line Interface"}, huh.Option[string]{Value: "cli", Key: "Command Line Interface"},
huh.Option[string]{Value: "tui", Key: "Terminal User Interface"}, huh.Option[string]{Value: "tui", Key: "Terminal User Interface"},
@@ -71,7 +71,7 @@ func (t *GitTask) Questions(interfaceType InterfaceType) Questions {
huh.NewGroup( huh.NewGroup(
huh.NewSelect[string]().Key("git_interface_normally"). huh.NewSelect[string]().Key("git_interface_normally").
Title("What Git Interface do you normally use?"). Title("What Git Interface do you normally use?").
Description("If "). Description("If you regularly use multiple interfaces, select the one you prefer most.").
Options( Options(
huh.Option[string]{Value: "cli", Key: "Command Line Interface"}, huh.Option[string]{Value: "cli", Key: "Command Line Interface"},
huh.Option[string]{Value: "tui", Key: "Terminal User Interface"}, huh.Option[string]{Value: "tui", Key: "Terminal User Interface"},