diff --git a/packages/geoview-geochart/src/geochart-panel.tsx b/packages/geoview-geochart/src/geochart-panel.tsx index 7be26140e42..c5058681a4e 100644 --- a/packages/geoview-geochart/src/geochart-panel.tsx +++ b/packages/geoview-geochart/src/geochart-panel.tsx @@ -10,9 +10,9 @@ import { logger } from 'geoview-core/src/core/utils/logger'; import { useMapVisibleLayers } from 'geoview-core/src/core/stores/store-interface-and-intial-values/map-state'; import { useDetailsStoreLayerDataArray } from 'geoview-core/src/core/stores'; import { useGeochartConfigs } from 'geoview-core/src/core/stores/store-interface-and-intial-values/geochart-state'; + import { GeoChart } from './geochart'; import { GeoViewGeoChartConfig } from './geochart-types'; - import { getSxClasses } from './geochart-style'; type GeoChartRenders = { @@ -83,11 +83,6 @@ export function GeoChartPanel(props: GeoChartPanelProps): JSX.Element { setSelectedLayerPath(layer.layerPath); }, []); - useEffect(() => { - // Log, leaving the logDebug here, because there's something funky going on across branches and this helps figuring it out - logger.logDebug('selected layer path changed', selectedLayerPath); - }, [selectedLayerPath]); - // Reacts when the array of layer data updates useEffect(() => { // Log