Skip to content

Commit a9aacef

Browse files
committed
stupid syntax errors
1 parent f234692 commit a9aacef

File tree

1 file changed

+1
-1
lines changed
  • source/_extensions/pwa_service_files

1 file changed

+1
-1
lines changed

source/_extensions/pwa_service_files/sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ self.addEventListener('install', function(e) {
66
e.waitUntil(
77
caches.open('frc-docs').then(function(cache) {
88
fetch('_static/cache.json')
9-
.then(response => response.json().then(data => cache.addAll(data); console.log(cache.keys())))
9+
.then(response => response.json().then(data => cache.addAll(data), console.log(cache.keys())))
1010
.catch(error => {
1111
console.error(error);
1212
});

0 commit comments

Comments
 (0)