correlations
All checks were successful
CI / ci (push) Successful in 18m51s

This commit is contained in:
2026-08-29 13:15:46 +02:00
parent 128e66abda
commit 4345f2322f
4 changed files with 22 additions and 3 deletions

View File

@@ -30,7 +30,9 @@ self.addEventListener("activate", (event) => {
.keys()
.then((keys) =>
Promise.all(
keys.filter((key) => key !== CACHE_NAME).map((key) => caches.delete(key))
keys
.filter((key) => key !== CACHE_NAME)
.map((key) => caches.delete(key))
)
)
.then(() => self.clients.claim())