diff --git a/src/_digifi/layout/components/paginatedListing/RecentBVNList.tsx b/src/_digifi/layout/components/paginatedListing/RecentBVNList.tsx index 2c49f2c..7f96acc 100644 --- a/src/_digifi/layout/components/paginatedListing/RecentBVNList.tsx +++ b/src/_digifi/layout/components/paginatedListing/RecentBVNList.tsx @@ -89,24 +89,24 @@ export default function RecentBVNList({
- {data.length && data.map((item, index)=>{ + {/* {data.length && data.map((item, index)=>{ item = item if(index%itemsPerPage == 0 && index >= currentPage && index <= currentPage+itemsPerPage){ return (
)} diff --git a/src/_digifi/layout/components/paginatedListing/RecentLoanAppList.tsx b/src/_digifi/layout/components/paginatedListing/RecentLoanAppList.tsx index 271dbea..a40853a 100644 --- a/src/_digifi/layout/components/paginatedListing/RecentLoanAppList.tsx +++ b/src/_digifi/layout/components/paginatedListing/RecentLoanAppList.tsx @@ -89,17 +89,17 @@ export default function RecentLoanAppList({
- {data.length && data.map((item, index)=>{ + {/* {data.length && data.map((item, index)=>{ item = item if(index%itemsPerPage == 0 && index >= currentPage && index <= currentPage+itemsPerPage){ return ( @@ -117,18 +117,18 @@ export default function RecentLoanAppList({ ) } - })} + })} */}
)}