From 004be2253d6085b4483cf70202a4b9bee1809ff9 Mon Sep 17 00:00:00 2001 From: George Tsiolis Date: Wed, 4 Mar 2026 00:56:56 +0200 Subject: [PATCH] Remove duplicate instructions during auth --- internal/ui/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ui/app.go b/internal/ui/app.go index cf2f821..7b12393 100644 --- a/internal/ui/app.go +++ b/internal/ui/app.go @@ -243,7 +243,7 @@ func formatResolvedInput(req output.UserInputRequestEvent, selectedKey string) s } } - if selected == "" || !hasLabels { + if selected == "" || !hasLabels || selectedKey == "any" { return firstLine } return fmt.Sprintf("%s %s", firstLine, selected)