diff --git a/src/app.js b/src/app.js index 2fd846ff..d1a76a50 100644 --- a/src/app.js +++ b/src/app.js @@ -1,6 +1,6 @@ import React, { Fragment } from 'react'; import { Map } from '@components/map'; -import ObservationDialog from "@components/dialog/observation-dialog"; +import { ObservationDialog } from "@components/dialog/observation-dialog"; import { useLayers } from '@context'; import { Sidebar } from '@components/sidebar'; @@ -11,7 +11,7 @@ export const App = () => { } = useLayers(); return ( - + { // for each observation selected selectedObservations.map (function (obs) { @@ -19,8 +19,8 @@ export const App = () => { return ; }) } - - + + ); };