From 8da2202de0c3e465bedc7e7bf0f4a8c97ae80ecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Mon, 29 Jan 2024 19:04:41 +0100 Subject: [PATCH] fix: add details --- webapp-next/components/charts/map/Map.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webapp-next/components/charts/map/Map.tsx b/webapp-next/components/charts/map/Map.tsx index 63c923e..5b678c3 100644 --- a/webapp-next/components/charts/map/Map.tsx +++ b/webapp-next/components/charts/map/Map.tsx @@ -14,6 +14,7 @@ type Props = { export default function MapIframe(props: Props) { const iframeRef = React.useRef(null); const { datasets, id } = props; + console.log(datasets); const [mapConfig, setMapConfig] = useState(null); const context = useContext(Cm2dContext); @@ -45,7 +46,7 @@ export default function MapIframe(props: Props) {