Skip to content

Commit bfad68e

Browse files
committed
Fixed naming error
1 parent 61e5876 commit bfad68e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/(api)/_types/judges.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface JudgeInt {
55
password: string;
66
specialty: string;
77
role: string;
8-
judge_pair_id?: string;
8+
judge_group_id?: string;
99
submission_ids?: string[];
1010
}
1111

app/(api)/api/judge-groups/[id]/put.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NextRequest } from 'next/server';
2-
import { UpdateJudgeGroup } from '@datalib/judgeGroups/updateJudgePair';
2+
import { UpdateJudgeGroup } from '@datalib/judgeGroups/updateJudgeGroup';
33

44
export async function PUT(
55
request: NextRequest,

0 commit comments

Comments
 (0)