replace limit = -1 with limit = null

This commit is contained in:
Alex Holliday
2025-01-14 22:23:40 -08:00
parent f0aea3a534
commit 7e1b8df8fc
@@ -136,7 +136,7 @@ const CreateMaintenance = () => {
const response = await networkService.getMonitorsByTeamId({
authToken: authToken,
teamId: user.teamId,
limit: -1,
limit: null,
types: ["http", "ping", "pagespeed"],
});
const monitors = response.data.data.monitors;