From 19062ac1265ed2e11fd46f60246a8bb1142e65f1 Mon Sep 17 00:00:00 2001 From: evlist Date: Tue, 1 Nov 2022 14:17:36 +0100 Subject: [PATCH] Removing a console.log() --- src/components/map/LiveMap.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map/LiveMap.tsx b/src/components/map/LiveMap.tsx index 1e00b83..7740628 100644 --- a/src/components/map/LiveMap.tsx +++ b/src/components/map/LiveMap.tsx @@ -79,7 +79,7 @@ export const LiveMap: react.FC = ( props: LiveMapProperties ) => { const [scope, setScope] = useState(props.scope); - console.log(`LiveMap rendering: ${JSON.stringify(scope)}`); + // console.log(`LiveMap rendering: ${JSON.stringify(scope)}`); const transform = (t: Transformation) => { const deltaZoom = t.deltaZoom === null ? 1 : t.deltaZoom; const deltaZoomLevel = Math.log2(deltaZoom);