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:
byeongcheolryu
2026-01-16 15:33:49 +09:00
parent 134dec8f9d
commit 4d249895ed

View File

@@ -414,7 +414,10 @@ export default function DynamicBoardListPage() {
}}
externalPagination={{
currentPage,
setCurrentPage,
totalPages,
totalItems: filteredData.length,
itemsPerPage: ITEMS_PER_PAGE,
onPageChange: setCurrentPage,
}}
/>
);