diff --git a/frontend/src/map/Map.tsx b/frontend/src/map/Map.tsx index c6823b9f..240d9b13 100644 --- a/frontend/src/map/Map.tsx +++ b/frontend/src/map/Map.tsx @@ -211,12 +211,16 @@ abstract class Map
extends React.Component
{ this.updateDrawableComponents().then(() => { this.draw(); + }).catch(() => { + /* intentional */ }); } protected redrawLayers() : void { this.mapLayerManager.draw(this.props.rawMap, this.props.theme).then(() => { this.draw(); + }).catch(() => { + /* intentional */ }); }