vmi-virtual-memorial/vmi-wd-frontend / fe6cc03

Browse files

satisfy the linter

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
fe6cc03492ed34edac4d6ce72341e99ba1004887
Parents
cc2f7b1
Tree
de68835

1 changed file

StatusFile+-
M app/memorial/conflict/[id]/page.tsx 0 1
app/memorial/conflict/[id]/page.tsxmodified
@@ -45,7 +45,6 @@ useEffect(() => {
4545
 
4646
   // Calculate paginated data
4747
   const totalItems = people.length;
48
-  const totalPages = Math.ceil(totalItems / itemsPerPage);
4948
   const startIndex = (currentPage - 1) * itemsPerPage;
5049
   const endIndex = startIndex + itemsPerPage;
5150
   const paginatedPeople = people.slice(startIndex, endIndex);