Skip to content

Commit 3ca91e5

Browse files
committed
chore: 한 번에 불러와지는 페이지 수 조정
1 parent b3bc3bf commit 3ca91e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/apis/post/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const createPostApi = (data: CreatePostRequest) => newRequest.post<Create
1919
// 전체 게시글 리스트
2020
export const getPostListApi = async ({ pageParam = 1 }) => {
2121
const response = await newRequest.get<GetPostListResponse>('/post', {
22-
params: { page: pageParam, take: 20 },
22+
params: { page: pageParam, take: 10 },
2323
});
2424
return {
2525
posts: response.data.post,

0 commit comments

Comments
 (0)