diff --git a/pkg/cli/commands/delete.go b/pkg/cli/commands/delete.go index 1792776..9c52d86 100644 --- a/pkg/cli/commands/delete.go +++ b/pkg/cli/commands/delete.go @@ -22,10 +22,6 @@ var deleteCmd = &cobra.Command{ func runDeleteCmd(cmd *cobra.Command, args []string) error { deleteID := strings.Join(args, " ") - if deleteID == "" { - return fmt.Errorf("issue ID cannot be empty") - } - issue := &models.Issue{ ID: deleteID, }