From b7c9c17bfec7d772e671ab6c0b3fdc76569e7f84 Mon Sep 17 00:00:00 2001 From: Robin Olsen <129996395+Telikz@users.noreply.github.com> Date: Mon, 16 Mar 2026 13:28:24 +0100 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- cmd/pm/tasks/gitTask.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"},