diff --git a/handlers/ticket.go b/handlers/ticket.go index 4de66e88e..ebceca2bd 100644 --- a/handlers/ticket.go +++ b/handlers/ticket.go @@ -341,14 +341,6 @@ func (th *ticketHandler) PostTicketDataToStakwork(w http.ResponseWriter, r *http } schematicURL = workspace.SchematicUrl - if schematicURL == "" { - w.WriteHeader(http.StatusNotFound) - json.NewEncoder(w).Encode(TicketResponse{ - Success: false, - Message: "Schematic URL not found in the workspace", - }) - return - } codeGraph, err := th.db.GetCodeGraphByUUID(feature.WorkspaceUuid) if err == nil {