Skip to content

Commit 8410cc2

Browse files
authored
fixed comments
1 parent 013dc6b commit 8410cc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ self.addEventListener("install", (event) => {
5151
});
5252
self.addEventListener("activate", (event) => {
5353
event.waitUntil(
54-
// clean up those who are not listed in manifestURLs
5554
caches.open(cacheName).then((cache) =>
55+
// clean up those who are not listed in manifestURLs
5656
cache.keys().then((keys) => {
5757
for (const request of keys) {
5858
if (!manifestURLs.includes(request.url)) {

0 commit comments

Comments
 (0)