From 01cfe678480d154fcade97899edb50d0ee4c1cb0 Mon Sep 17 00:00:00 2001 From: itzaname Date: Fri, 26 Dec 2025 20:38:18 -0500 Subject: [PATCH] Just exclude rejected and released for active list --- web/src/app/maps/[mapId]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/app/maps/[mapId]/page.tsx b/web/src/app/maps/[mapId]/page.tsx index f519217..935b0fe 100644 --- a/web/src/app/maps/[mapId]/page.tsx +++ b/web/src/app/maps/[mapId]/page.tsx @@ -378,7 +378,7 @@ export default function MapDetails() { {/* Mapfix Section - Active + History */} {mapfixes.length > 0 && (() => { - const activeFix = mapfixes.find(fix => fix.StatusID <= MapfixStatus.Validated); + const activeFix = mapfixes.find(fix => fix.StatusID !== MapfixStatus.Rejected && fix.StatusID !== MapfixStatus.Released); const releasedFixes = mapfixes.filter(fix => fix.StatusID === MapfixStatus.Released); const hasContent = activeFix || releasedFixes.length > 0;