diff --git a/apps/client/src/widgets/collections/geomap/index.tsx b/apps/client/src/widgets/collections/geomap/index.tsx index b04403328..7dfc5de58 100644 --- a/apps/client/src/widgets/collections/geomap/index.tsx +++ b/apps/client/src/widgets/collections/geomap/index.tsx @@ -47,7 +47,6 @@ export default function GeoView({ note, noteIds, viewConfig, saveConfig }: ViewM saveConfig(viewConfig); } }, 5000); - console.log("Repaint!"); useEffect(() => { froca.getNotes(noteIds).then(setNotes) }, [ noteIds ]); @@ -140,8 +139,6 @@ function NoteWrapper({ note, isReadOnly }: { note: FNote, isReadOnly: boolean }) const mime = useNoteProperty(note, "mime"); const [ location ] = useNoteLabel(note, LOCATION_ATTRIBUTE); - console.log("Got ", note, mime); - if (mime === "application/gpx+xml") { return ; } @@ -182,7 +179,6 @@ function NoteMarker({ note, editable, latLng }: { note: FNote, editable: boolean const onContextMenu = useCallback((e: LeafletMouseEvent) => openContextMenu(note.noteId, e, editable), [ note.noteId, editable ]); - console.log("Got ", latLng); return latLng &&