First merge from develop to main (WIP) #7

Merged
sugar merged 199 commits from develop into main 2026-01-27 17:47:07 +00:00
Showing only changes of commit a06248f3be - Show all commits

View File

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