Skip to content

Commit b445f2a

Browse files
committed
wip: remove ac poi layer, spinner and toasts for presentation
1 parent 84863af commit b445f2a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/App/MapLayout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export default function MapLayout({
101101
<LoadableMapView width={width} height={height} key="map" />
102102
<BlurLayer active={blur} style={{ zIndex: 1000 }} />
103103
<div style={{ zIndex: 2000 }}>{children}</div>
104-
<StyledToastContainer position="bottom-center" stacked />
104+
{/*<StyledToastContainer position="bottom-center" stacked />*/}
105105
</Main>
106106
</ErrorBoundary>
107107
);

src/components/Map/MapView.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export default function MapView({ width, height, ...props }: IProps) {
211211
{mapLoaded && (
212212
<MapLayers onInteractiveLayersChange={setInteractiveLayerIds} />
213213
)}
214-
{mapLoaded && <AcPoiLayers />}
214+
{/*{mapLoaded && <AcPoiLayers />}*/}
215215
<GeolocateButton />
216216
<NavigationControl
217217
position="bottom-right"
@@ -221,7 +221,7 @@ export default function MapView({ width, height, ...props }: IProps) {
221221
/>
222222
</ReactMapGL>
223223
</MapProvider>
224-
<StyledLoadingIndicator />
224+
{/*<StyledLoadingIndicator />*/}
225225
</>
226226
);
227227
}

0 commit comments

Comments
 (0)