Fix: double fetch on Ingresos

This commit is contained in:
Jose
2026-02-01 14:55:56 +01:00
parent 6069486f20
commit bfdec69fbf

View File

@@ -55,7 +55,7 @@ const IngresosContent = ({ reqConfig }) => {
useEffect(() => {
const fetchData = async () => {
try {
const response = await getData(reqConfig.dropdownUrl);
const response = await getData(reqConfig.dropdownUrl, {}, false);
const map = new Map();
response
.sort((a, b) => a.memberNumber - b.memberNumber)