diff --git a/src/components/historical-data/index.tsx b/src/components/historical-data/index.tsx index 0f685fb..384b246 100644 --- a/src/components/historical-data/index.tsx +++ b/src/components/historical-data/index.tsx @@ -160,7 +160,6 @@ const App = ({ // split data into pages const idx = (pageNum - 1) * pageSize; return _(data) - .slice(idx, idx + pageSize) .map((d, idx) => { return (
); }) + .slice(idx, idx + pageSize) .value(); }