fix: campaigns/partners filter 422 — limit=200 exceeds backend max (100)

This commit is contained in:
Fringg
2026-04-24 16:31:05 +03:00
parent 8e767443f0
commit 5b1892ddbb

View File

@@ -1574,11 +1574,11 @@ export default function AdminBulkActions() {
.then((d) => setPromoGroups(d.items))
.catch(() => {});
campaignsApi
.getCampaigns(true, 0, 200)
.getCampaigns(true, 0, 100)
.then((d) => setCampaigns(d.campaigns))
.catch(() => {});
partnerApi
.getPartners({ limit: 200 })
.getPartners({ limit: 100 })
.then((d) => setPartners(d.items))
.catch(() => {});
}, []);