Changeset e1f74f6 for frontend/src


Ignore:
Timestamp:
09/04/26 11:13:52 (11 days ago)
Author:
MBK <marija.karapandzova@…>
Branches:
master
Children:
9af201e
Parents:
20d16ca
Message:

Fix authentication, authorization, performance, and add security documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/pages/billing/BillingList.js

    r20d16ca re1f74f6  
    2020  const [patientFilter, setPatientFilter] = useState('');
    2121  const [patients, setPatients] = useState([]);
     22  const [pageSize] = useState(50); // Limit to 50 records per page
    2223
    2324  useEffect(() => {
     
    6970    }
    7071    return true;
    71   });
     72  }).slice(0, pageSize); // Limit to first 50 records for performance
    7273
    7374  const pendingBillings = billings.filter(b => b.paymentStatus === 'PENDING');
Note: See TracChangeset for help on using the changeset viewer.