refactor(client): use updated interface

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit is contained in:
2025-12-27 00:24:57 +08:00
parent 81a518a98b
commit a06248f3be

View File

@@ -4,7 +4,7 @@ import { axiosClient } from '@/lib/axios';
export function useCheckin() {
return useMutation({
mutationFn: async () => {
return axiosClient.post<object>('/checkin');
return axiosClient.post<object>('/user/checkin');
},
});
}