We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f8d5ae + 910382a commit 835b5d8Copy full SHA for 835b5d8
1 file changed
src/hooks/useInfiniteActivities.ts
@@ -11,7 +11,7 @@ const fetchActivities = async ({ pageParam = 0 }) => {
11
if (pageParam) {
12
query += `&cursorId=${pageParam}`;
13
}
14
- const res = await fetchFromClient(`my-activities?${query}`);
+ const res = await fetchFromClient(`/my-activities?${query}`);
15
if (!res.ok) throw new Error('체험 리스트 불러오기 실패');
16
const data = await res.json();
17
return data;
0 commit comments