From bec34ed8a1a9f4386f39189f49404ddbd5084a40 Mon Sep 17 00:00:00 2001 From: Ballbot <5252bb@daum.net> Date: Sun, 2 Jun 2024 20:42:25 +0900 Subject: [PATCH] size=9999 --- src/PostList.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PostList.jsx b/src/PostList.jsx index fbf67b7..93fe6f3 100644 --- a/src/PostList.jsx +++ b/src/PostList.jsx @@ -8,7 +8,7 @@ function PostList({ orderBy, page }) { const [isPostLoading, setIsPostLoading] = useState(false) const fetch = async () => { - const res = await axios.get(`https://apt-api.blbt.app/v1/apartment?page=${page}&size=10&order=${orderBy}`, { + const res = await axios.get(`https://apt-api.blbt.app/v1/apartment?page=${page}&size=9999&order=${orderBy}`, { headers: { 'Content-Type': 'application/json', },