Skip to content

Commit

Permalink
fix: trace error (#683)
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt authored Dec 24, 2024
1 parent 013b0b7 commit 9695fc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/api/v1/runs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@ runs.get("/:id/related", checkAccess("logs", "read"), async (ctx) => {
const id = ctx.params.id;
const { projectId } = ctx.state;

const relatedRuns = getRelatedRuns(id, projectId);
const relatedRuns = await getRelatedRuns(id, projectId);

ctx.body = relatedRuns;
});
Expand Down

0 comments on commit 9695fc4

Please sign in to comment.