Skip to content

Commit

Permalink
Fix lane editor initial load
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Mar 15, 2024
1 parent be570cb commit 0a140c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web/src/lane-editor/App.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script lang="ts">
import { map } from "../common/store";
import { GeoJSON, FillLayer, type LayerClickInfo } from "svelte-maplibre";
import { emptyGeojson, layerId } from "../common/utils";
import { network, StreetView } from "../common";
Expand Down Expand Up @@ -69,7 +70,9 @@
</ul>
</div>

<StreetView />
{#if $map}
<StreetView />
{/if}
</div>
<div slot="main">
<Map>
Expand Down

0 comments on commit 0a140c2

Please sign in to comment.