From cd7f238994b9e6639139c5eaec43829c616fb420 Mon Sep 17 00:00:00 2001 From: vb Date: Thu, 5 Feb 2026 14:52:44 +0100 Subject: [PATCH] removing redundant reference to issue title --- pkg/cli/commands/delete.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/cli/commands/delete.go b/pkg/cli/commands/delete.go index 443bc58..6d95498 100644 --- a/pkg/cli/commands/delete.go +++ b/pkg/cli/commands/delete.go @@ -37,10 +37,6 @@ func runDeleteCmd(cmd *cobra.Command, args []string) error { str := fmt.Sprintf("Deleted issue with ID: %s\n", issue.ID) - if issue.Title != "" { - str += fmt.Sprintf("Title: %s\n", issue.Title) - } - fmt.Print(str) return nil