diff options
| -rw-r--r-- | app/components/Connect.js | 2 | ||||
| -rw-r--r-- | app/components/Map.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/components/Connect.js b/app/components/Connect.js index f4b1f4210f..064873f581 100644 --- a/app/components/Connect.js +++ b/app/components/Connect.js @@ -6,7 +6,7 @@ import { If, Then, Else } from 'react-if'; import { Layout, Container, Header } from './Layout'; import { BackendError } from '../lib/backend'; import ExternalLinkSVG from '../assets/images/icon-extLink.svg'; -import { Map } from './Map'; +import Map from './Map'; import type { ServerInfo } from '../lib/backend'; import type { HeaderBarStyle } from './HeaderBar'; diff --git a/app/components/Map.js b/app/components/Map.js index 8670397891..337d5c812b 100644 --- a/app/components/Map.js +++ b/app/components/Map.js @@ -13,7 +13,7 @@ const ReactMap = ReactMapboxGl({ interactive: false, }); -export class Map extends Component { +export default class Map extends Component { props: { animate: boolean, location: Coordinate2d, |
