From 85a8e291cb156bef849c14ba8055e84c57af32da Mon Sep 17 00:00:00 2001 From: Himanshu Narware <83147410+HimanshuNarware@users.noreply.github.com> Date: Sun, 8 Sep 2024 15:58:33 +0530 Subject: [PATCH] Update Home.js --- frontend/src/Component/Home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Component/Home.js b/frontend/src/Component/Home.js index 92aaab78..5787a6e3 100644 --- a/frontend/src/Component/Home.js +++ b/frontend/src/Component/Home.js @@ -25,7 +25,7 @@ function Home(props) { } const [currentPage, setCurrentPage] = useState(1); - const postPerpage = 32; + const postPerpage = 44; const lastPostIndex = currentPage * postPerpage; const firstPostIndex = lastPostIndex - postPerpage; const [dataBaseData, setDataBaseData] = useState([]);