Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit-kadhe committed May 15, 2024
1 parent ccd42b6 commit acc5ea5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/api/evaluation/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export async function PUT(req: NextRequest) {
testId
},
});
console.log(evaluation);

if (!evaluation) {
return NextResponse.json(
{
Expand Down
2 changes: 1 addition & 1 deletion app/api/metrics/accuracy/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export async function GET(req: NextRequest) {
lastNDays
);

// get evalutaion for the last 7 days
// get evalutaion for the lastNDays
// and all evaluations where score is 1 or -1
evaluations = await prisma.evaluation.findMany({
where: {
Expand Down

0 comments on commit acc5ea5

Please sign in to comment.