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:24:49 +01:00
committed by GitHub
parent 9a70851a0a
commit aa661c2bce

View File

@@ -69,7 +69,7 @@ func (t *GitTask) Questions(interfaceType InterfaceType) Questions {
), ),
).With( ).With(
huh.NewGroup( huh.NewGroup(
huh.NewSelect[string]().Key("git_interface_normaly"). 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 ").
Options( Options(
@@ -81,7 +81,7 @@ func (t *GitTask) Questions(interfaceType InterfaceType) Questions {
} }
func (t *GitTask) QuestionnaireKeys(_ InterfaceType) []string { func (t *GitTask) QuestionnaireKeys(_ InterfaceType) []string {
return BaseKeys().With("git_interface_used", "git_interface_normaly") return BaseKeys().With("git_interface_used", "git_interface_normally")
} }
func (t *GitTask) Setup(ctx context.Context) error { func (t *GitTask) Setup(ctx context.Context) error {