diff --git a/frontend/src/_components/Pagination.jsx b/frontend/src/_components/Pagination.jsx index d19e6c86d7..4fa0a841fc 100644 --- a/frontend/src/_components/Pagination.jsx +++ b/frontend/src/_components/Pagination.jsx @@ -1,4 +1,4 @@ -import React, { useState, useEffect } from 'react'; +import React from 'react'; export const Pagination = function Pagination({ currentPage, count, totalPages, pageChanged @@ -21,7 +21,7 @@ export const Pagination = function Pagination({ } return (
-

Showing 1 to 8 of {count} entries

+

Showing { (currentPage - 1) * 10 + 1} to {currentPage * 10} of {count} entries