fix: boards 페이지 externalPagination NaN 이슈 수정
- externalPagination에 누락된 필수 props 추가 - totalPages: 총 페이지 수 - totalItems: 총 항목 수 - itemsPerPage: 페이지당 항목 수 - onPageChange: 페이지 변경 핸들러 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -414,7 +414,10 @@ export default function DynamicBoardListPage() {
|
||||
}}
|
||||
externalPagination={{
|
||||
currentPage,
|
||||
setCurrentPage,
|
||||
totalPages,
|
||||
totalItems: filteredData.length,
|
||||
itemsPerPage: ITEMS_PER_PAGE,
|
||||
onPageChange: setCurrentPage,
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user