From 538d6f2d097feffd910a74a4685957be608e9a8f Mon Sep 17 00:00:00 2001 From: jikwan Date: Sun, 4 Jun 2023 10:56:13 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=95=99=EC=83=9D=20=EC=B5=9C=EA=B7=BC?= =?UTF-8?q?=20=EC=83=81/=EB=B2=8C=EC=A0=90=20=EB=82=B4=EC=97=AD=20queryKey?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/admin/src/hooks/usePointsApi.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/admin/src/hooks/usePointsApi.tsx b/services/admin/src/hooks/usePointsApi.tsx index 6cdc444..0fac655 100644 --- a/services/admin/src/hooks/usePointsApi.tsx +++ b/services/admin/src/hooks/usePointsApi.tsx @@ -53,7 +53,7 @@ export const useRecentStudentPointHistory = ( size?: number, ) => { return useQuery( - [`getStudentPointHistory`, student_id], + [`getRecentStudentPointHistory`, student_id], () => getRecentStudentPointHistory(student_id, page, size), { refetchOnWindowFocus: true,