Skip to content

Commit

Permalink
fix(entities): turn off geolocation by default
Browse files Browse the repository at this point in the history
  • Loading branch information
NSUWAL123 committed Dec 16, 2024
1 parent d8acb4d commit bc821e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapper/src/store/entities.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ let syncEntityStatusLoading: boolean = $state(false);
let updateEntityStatusLoading: boolean = $state(false);
let selectedEntityCoordinate: entityIdCoordinateMapType | null = $state(null);
let entityToNavigate: entityIdCoordinateMapType | null = $state(null);
let toggleGeolocation: boolean = $state(true);
let toggleGeolocation: boolean = $state(false);

function getEntityStatusStream(projectId: number): ShapeStream | undefined {
if (!projectId) {
Expand Down

0 comments on commit bc821e9

Please sign in to comment.