aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/public
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/public')
-rw-r--r--src/frontend/public/maps/styles/openfreemap-dark.json2
-rw-r--r--src/frontend/public/maps/styles/openfreemap-light.json2
-rw-r--r--src/frontend/public/pwa-worker.js4
3 files changed, 4 insertions, 4 deletions
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();