Skip to content

Commit

Permalink
fix: 학생 최근 상/벌점 내역 queryKey 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jikwan0327 committed Jun 4, 2023
1 parent 12efbd6 commit 538d6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/admin/src/hooks/usePointsApi.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const useRecentStudentPointHistory = (
size?: number,
) => {
return useQuery(
[`getStudentPointHistory`, student_id],
[`getRecentStudentPointHistory`, student_id],
() => getRecentStudentPointHistory(student_id, page, size),
{
refetchOnWindowFocus: true,
Expand Down

0 comments on commit 538d6f2

Please sign in to comment.