From a06248f3bea136ebed48b5d46b013d402cf062ba Mon Sep 17 00:00:00 2001 From: Noa Virellia Date: Sat, 27 Dec 2025 00:24:57 +0800 Subject: [PATCH] refactor(client): use updated interface Signed-off-by: Noa Virellia --- client/src/hooks/data/useCheckin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/hooks/data/useCheckin.ts b/client/src/hooks/data/useCheckin.ts index 3bde16f..9c884b6 100644 --- a/client/src/hooks/data/useCheckin.ts +++ b/client/src/hooks/data/useCheckin.ts @@ -4,7 +4,7 @@ import { axiosClient } from '@/lib/axios'; export function useCheckin() { return useMutation({ mutationFn: async () => { - return axiosClient.post('/checkin'); + return axiosClient.post('/user/checkin'); }, }); }