We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3bc3bf commit 3ca91e5Copy full SHA for 3ca91e5
1 file changed
src/apis/post/index.ts
@@ -19,7 +19,7 @@ export const createPostApi = (data: CreatePostRequest) => newRequest.post<Create
19
// 전체 게시글 리스트
20
export const getPostListApi = async ({ pageParam = 1 }) => {
21
const response = await newRequest.get<GetPostListResponse>('/post', {
22
- params: { page: pageParam, take: 20 },
+ params: { page: pageParam, take: 10 },
23
});
24
return {
25
posts: response.data.post,
0 commit comments