From 9740566d3c60a098ec1f82023d6756977a970b41 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Wed, 12 Feb 2025 17:52:37 -0800 Subject: [PATCH] Only show "About" on click There is likely a better way to do this, but the current solution seems more disruptive than it is helpful. --- web/src/stores.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/stores.ts b/web/src/stores.ts index e9a37c7..913d0c1 100644 --- a/web/src/stores.ts +++ b/web/src/stores.ts @@ -62,7 +62,8 @@ export let map: Writable = writable(null); // The exact key in local storage export let projectName: Writable = writable(""); -export let showAbout: Writable = writable(true); +// False until user activates +export let showAbout: Writable = writable(false); export let backend: Writable = writable(null); export let route_pt_a: Writable = writable(new LngLat(0, 0));