diff --git a/frontend/src/components/maps/LocationMapBottomSheet.jsx b/frontend/src/components/maps/LocationMapBottomSheet.jsx
index 3929af6..230d0d7 100644
--- a/frontend/src/components/maps/LocationMapBottomSheet.jsx
+++ b/frontend/src/components/maps/LocationMapBottomSheet.jsx
@@ -97,6 +97,7 @@ export default function LocationMapBottomSheet({
const maxHeight = Math.max(40, Math.round(mapSize?.height || selectedHeight));
const saveDraftLabel = savingAction === "save" ? "Saving..." : "Save Draft";
const publishLabel = savingAction === "publish" ? "Publishing..." : "Publish";
+ const resetLayerFilters = () => setFilters({ ...DEFAULT_MAP_FILTERS });
const showSelectedZoneItems = () => {
setFilters((current) => ({
...current,
@@ -162,31 +163,34 @@ export default function LocationMapBottomSheet({
{sheetDescription}
) : null}
-
-
-
- {layersOpen ? (
-
+
{changedLayerCount ? (
) : null}
+
+
+
+
+ {layersOpen ? (
+
{DISPLAY_CONTROLS.map(([key, label]) => (