We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 206b0fe commit 7195a2dCopy full SHA for 7195a2d
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "http-react",
3
- "version": "3.8.5",
+ "version": "3.8.6",
4
"description": "React hooks for data fetching",
5
"main": "dist/index.js",
6
"scripts": {
src/components/LocalStorageCacheProvider.tsx
@@ -11,8 +11,6 @@ const loadFromLocalStorage = () => {
11
try {
12
const currentValue = localStorage.getItem(key)
13
if (typeof currentValue !== 'undefined') {
14
- console.log({ key, currentValue })
15
-
16
defaultCache.set(key, JSON.parse(currentValue!))
17
}
18
} catch (error) {
@@ -22,7 +20,6 @@ const loadFromLocalStorage = () => {
22
20
23
21
24
isCacheHydrated = true
25
- console.log('Cache hydration complete.')
26
27
28
0 commit comments