From 276e73412abef28c222c52a84334d49f5e414f3c Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 17 Nov 2025 23:39:08 +0100 Subject: Use consolidated data API in map sheet with shared card component (#100) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com> Co-authored-by: Ariel Costas Guerrero --- src/frontend/public/maps/styles/openfreemap-dark.json | 2 +- src/frontend/public/maps/styles/openfreemap-light.json | 2 +- src/frontend/public/pwa-worker.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/frontend/public') diff --git a/src/frontend/public/maps/styles/openfreemap-dark.json b/src/frontend/public/maps/styles/openfreemap-dark.json index 1a46976..2803f1a 100644 --- a/src/frontend/public/maps/styles/openfreemap-dark.json +++ b/src/frontend/public/maps/styles/openfreemap-dark.json @@ -3346,7 +3346,7 @@ "interpolate", ["linear"], ["get", "zoom"], - 0, 11, + 0, 1, 14, 1, 16, 0.8, 18, 0.6, diff --git a/src/frontend/public/maps/styles/openfreemap-light.json b/src/frontend/public/maps/styles/openfreemap-light.json index 0141ce4..d616fe7 100644 --- a/src/frontend/public/maps/styles/openfreemap-light.json +++ b/src/frontend/public/maps/styles/openfreemap-light.json @@ -6995,7 +6995,7 @@ "interpolate", ["linear"], ["get", "zoom"], - 0, 11, + 0, 1, 14, 1, 16, 0.8, 18, 0.6, diff --git a/src/frontend/public/pwa-worker.js b/src/frontend/public/pwa-worker.js index 13c1978..eb69b84 100644 --- a/src/frontend/public/pwa-worker.js +++ b/src/frontend/public/pwa-worker.js @@ -14,7 +14,7 @@ self.addEventListener("install", (event) => { caches .open(STATIC_CACHE_NAME) .then((cache) => cache.addAll(STATIC_CACHE_ASSETS)) - .then(() => self.skipWaiting()), + .then(() => self.skipWaiting()) ); }); @@ -27,7 +27,7 @@ self.addEventListener("activate", (event) => { if (name !== STATIC_CACHE_NAME) { return caches.delete(name); } - }), + }) ); await self.clients.claim(); -- cgit v1.3