Removing a console.log()

This commit is contained in:
Eric van der Vlist 2022-11-01 14:17:36 +01:00
parent 50114598b2
commit 19062ac126
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ export const LiveMap: react.FC<LiveMapProperties> = (
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);