We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d7f06f commit f55f54eCopy full SHA for f55f54e
source/_extensions/pwa_service_files/sw.js
@@ -6,7 +6,7 @@ self.addEventListener('install', function(e) {
6
e.waitUntil(
7
caches.open('frc-docs').then(function(cache) {
8
fetch('_static/cache.json')
9
- .then(response => return cache.addAll(response.json()))
+ .then(response => {return cache.addAll(response.json())})
10
.catch(error => {
11
console.error(error);
12
});
0 commit comments