From 44fe0e8c4634ed7fa7c1912dcf6d0241b85245e4 Mon Sep 17 00:00:00 2001 From: Robin Olsen <129996395+Telikz@users.noreply.github.com> Date: Sat, 28 Feb 2026 23:41:28 +0100 Subject: [PATCH] Update cmd/survey/tasks/base.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- cmd/survey/tasks/base.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/survey/tasks/base.go b/cmd/survey/tasks/base.go index 52065ac..178ef6e 100644 --- a/cmd/survey/tasks/base.go +++ b/cmd/survey/tasks/base.go @@ -111,7 +111,7 @@ func TUIQuestion(interfaceType InterfaceType, fields ...huh.Field) *huh.Group { return huh.NewGroup(fields...) } -// FetchIssues retrives all issues from the app and returns those that are relevant for validation, +// FetchIssues retrieves all issues from the app and returns those that are relevant for validation, // excluding the setup issue. It also updates the setup issue with the latest data from the app. func FetchIssues(ctx context.Context, app *app.App, setupIssue *models.Issue) ([]*models.Issue, error) { issues, err := app.Issues.SearchIssues(ctx, "", models.IssueFilter{})