Skip to content

Commit

Permalink
Only show "About" on click
Browse files Browse the repository at this point in the history
There is likely a better way to do this, but the current solution seems
more disruptive than it is helpful.
  • Loading branch information
michaelkirk authored and dabreegster committed Feb 13, 2025
1 parent 246d96f commit 9740566
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/src/stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ export let map: Writable<Map | null> = writable(null);

// The exact key in local storage
export let projectName: Writable<string> = writable("");
export let showAbout: Writable<boolean> = writable(true);
// False until user activates
export let showAbout: Writable<boolean> = writable(false);

export let backend: Writable<Backend | null> = writable(null);
export let route_pt_a: Writable<LngLat> = writable(new LngLat(0, 0));
Expand Down

0 comments on commit 9740566

Please sign in to comment.