From c762c9db32c61eb22d9b66f39c6922b1cb5dc33f Mon Sep 17 00:00:00 2001 From: viljarb Date: Thu, 5 Feb 2026 18:01:43 +0100 Subject: [PATCH] corrected non-existed variable name --- pkg/cli/commands/delete.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/commands/delete.go b/pkg/cli/commands/delete.go index 2569332..68fce1b 100644 --- a/pkg/cli/commands/delete.go +++ b/pkg/cli/commands/delete.go @@ -25,7 +25,7 @@ func runDeleteCmd(cmd *cobra.Command, args []string) error { return fmt.Errorf("error deleting issue: %w", err) } - str := fmt.Sprintf("Deleted issue with ID: %s\n", issue.ID) + str := fmt.Sprintf("Deleted issue with ID: %s\n", deleteID) fmt.Print(str)