Skip to content

Commit

Permalink
fix: 잘못된 파라미터 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
smb0123 committed Sep 24, 2024
1 parent 9f0ac4e commit dc546fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/components/interview/Board.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const InterviewBoard = ({ generation }: InterviewBoardProps) => {
queryFn: () =>
getInterviewRecordByPageWithOrder({
page: +pageIndex,
sortType: order,
order: order,
year: generation,
}),
});
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/interview/PageNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const InterviewPageNavbar = ({ generation }: InterviewPageNavbarProps) => {
() =>
getInterviewRecordByPageWithOrder({
page: +pageIndex,
sortType: order,
order: order,
year: generation,
}),
{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/apis/interview/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ interface RecordsByPageRes {

interface GetInterviewRecordByPageWithOrderReq {
page: number;
sortType: string;
order: string;
year: string;
}

Expand Down

0 comments on commit dc546fb

Please sign in to comment.