diff --git a/explorer/src/api/index.ts b/explorer/src/api/index.ts index f2647e2cc5..808c8bfc5f 100644 --- a/explorer/src/api/index.ts +++ b/explorer/src/api/index.ts @@ -23,7 +23,7 @@ import { function getFromCache(key: string) { const ts = Number(localStorage.getItem('ts')); - const hasExpired = Date.now() - ts > 200000; + const hasExpired = Date.now() - ts > 5000; const curr = localStorage.getItem(key); if (curr && !hasExpired) { return JSON.parse(curr);