Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
634750802 committed Dec 18, 2024
1 parent 192e768 commit 7ad899f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/src/api/evaluations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ export async function listEvaluationTasks ({ ...params }: PageParams & { keyword
}

export async function getEvaluationTask (id: number): Promise<EvaluationTask> {
return fetch(requestUrl(`/api/v1/admin/evaluation/tasks/${id}`), {
return fetch(requestUrl(`/api/v1/admin/evaluation/tasks/${id}/summary`), {
headers: await authenticationHeaders(),
})
.then(handleResponse(evaluationTaskSchema));
Expand Down

0 comments on commit 7ad899f

Please sign in to comment.