Removing a console.log()
This commit is contained in:
parent
50114598b2
commit
19062ac126
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue