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/pwa-worker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/frontend/public/pwa-worker.js') 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