diff --git a/frontend/src/components/maps/LocationMapSetupPanel.jsx b/frontend/src/components/maps/LocationMapSetupPanel.jsx index d41d3fb..1bccf2a 100644 --- a/frontend/src/components/maps/LocationMapSetupPanel.jsx +++ b/frontend/src/components/maps/LocationMapSetupPanel.jsx @@ -11,11 +11,6 @@ export default function LocationMapSetupPanel({ onCreateBlank, }) { const hasZones = zoneCount > 0; - const status = hasAnyMap - ? "Draft" - : canManage - ? "Not started" - : "Not published"; const createFromZonesLabel = hasZones ? `Create From ${zoneCount} Zone${zoneCount === 1 ? "" : "s"}` : "Create From Zones"; @@ -26,18 +21,14 @@ export default function LocationMapSetupPanel({ return (

{hasAnyMap ? "Draft Map" : "No Map"}

-
-
- Status - {status} -
- {canManage ? ( + {canManage ? ( +
Zones {zoneCount}
- ) : null} -
+
+ ) : null} {hasAnyMap && canManage ? (