Skip to content

Commit f3f4c95

Browse files
authoredMar 31, 2025··
fix: Info table crash (#11401)
<!-- Before opening a pull request, please read the [contributing guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md) first --> <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on enhancing the logic for calculating the maximum number of pages in the `PoolsTable` component by adding a check for `poolDatas` before performing calculations. ### Detailed summary - Added a check for `poolDatas` existence before calculating `extraPages`. - Moved the `setMaxPage` call inside the conditional block to ensure it only runs when `poolDatas` is defined. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 73d3b0c commit f3f4c95

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

‎apps/web/src/views/Info/components/InfoTables/PoolsTable.tsx

+6-4
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,13 @@ const PoolTable: React.FC<React.PropsWithChildren<PoolTableProps>> = ({ poolData
133133
const [page, setPage] = useState(1)
134134
const [maxPage, setMaxPage] = useState(1)
135135
useEffect(() => {
136-
let extraPages = 1
137-
if (poolDatas.length % ITEMS_PER_INFO_TABLE_PAGE === 0) {
138-
extraPages = 0
136+
if (poolDatas) {
137+
let extraPages = 1
138+
if (poolDatas.length % ITEMS_PER_INFO_TABLE_PAGE === 0) {
139+
extraPages = 0
140+
}
141+
setMaxPage(Math.floor(poolDatas.length / ITEMS_PER_INFO_TABLE_PAGE) + extraPages)
139142
}
140-
setMaxPage(Math.floor(poolDatas.length / ITEMS_PER_INFO_TABLE_PAGE) + extraPages)
141143
}, [poolDatas])
142144
const sortedPools = useMemo(() => {
143145
return poolDatas

0 commit comments

Comments
 (0)
Please sign in to comment.