We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4df41aa commit cfa826bCopy full SHA for cfa826b
src/pages/Campaign/widgets/TotalBugsByOsAndDevices/ListTotalBugsByDevice/index.tsx
@@ -16,9 +16,9 @@ export const ListTotalBugsByDevice = ({
16
17
const [currentPage, setCurrentPage] = useState<number>(1);
18
const [paginatedItems, setPaginatedItems] = useState(items);
19
- const pageSize = 6;
+ const pageSize = 4;
20
const maxPages = useMemo(
21
- () => Math.ceil(total / pageSize),
+ () => Math.ceil(items.length / pageSize),
22
[items, pageSize]
23
);
24
0 commit comments