diff --git a/packages/landing/src/components/map.label.tsx b/packages/landing/src/components/map.label.tsx index 293914f47..9a94e1711 100644 --- a/packages/landing/src/components/map.label.tsx +++ b/packages/landing/src/components/map.label.tsx @@ -52,7 +52,7 @@ export class MapLabelControl implements IControl { // Most vector styles have overlaps with the labels and make them useless if (Config.map.style && LabelsDisabledLayers.has(Config.map.style)) return true; // Labels use the merge style feature and need the production configuration to work - if (Config.map.config) return true; + if (Config.map.isDebug && Config.map.config) return true; return false; }