diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2025-11-17 23:39:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-17 23:39:08 +0100 |
| commit | 276e73412abef28c222c52a84334d49f5e414f3c (patch) | |
| tree | 8b7ae07eafa53f9efc5884e4f0696e6077266f48 /src/frontend/public/pwa-worker.js | |
| parent | 36d982fb3b01fd8181b216b57fba2c42e9404d1f (diff) | |
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 <ariel@costas.dev>
Diffstat (limited to 'src/frontend/public/pwa-worker.js')
| -rw-r--r-- | src/frontend/public/pwa-worker.js | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |
