From ed47582a4c24e4c55eacee32e56d335b978b1c8a Mon Sep 17 00:00:00 2001 From: Nicola Lamacchia Date: Wed, 19 Feb 2020 21:26:37 +0100 Subject: [PATCH] Fix typo --- public/sw.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/sw.js b/public/sw.js index 5d6403c..9c6c291 100644 --- a/public/sw.js +++ b/public/sw.js @@ -12,7 +12,7 @@ const resourcesToPrecache = [ '/manifest.json', ] -const cachedResources = async () => { +const cacheResources = async () => { const cache = await caches.open(cacheName) return cache.addAll(resourceToPrecache) }