diff --git a/.replit b/.replit index 3dc4618..a6d8b5f 100644 --- a/.replit +++ b/.replit @@ -14,6 +14,10 @@ run = ["npm", "run", "start"] localPort = 5000 externalPort = 80 +[[ports]] +localPort = 36213 +externalPort = 3001 + [[ports]] localPort = 41303 externalPort = 3002 diff --git a/client/src/pages/Detections.tsx b/client/src/pages/Detections.tsx index e945bc5..870f562 100644 --- a/client/src/pages/Detections.tsx +++ b/client/src/pages/Detections.tsx @@ -22,7 +22,7 @@ export default function Detections() { // Build query params const queryParams = new URLSearchParams(); - queryParams.set("limit", "500"); + queryParams.set("limit", "5000"); if (anomalyTypeFilter !== "all") { queryParams.set("anomalyType", anomalyTypeFilter); } @@ -292,7 +292,7 @@ export default function Detections() {