From 64d0aae6725cfb2814fbe7f57bc30fc26d028175 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Thu, 19 Mar 2026 13:31:16 +0530 Subject: [PATCH] fix: disable IDB cache --- app/javascript/dashboard/api/CacheEnabledApiClient.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/dashboard/api/CacheEnabledApiClient.js b/app/javascript/dashboard/api/CacheEnabledApiClient.js index 9af939c00..26ba29e69 100644 --- a/app/javascript/dashboard/api/CacheEnabledApiClient.js +++ b/app/javascript/dashboard/api/CacheEnabledApiClient.js @@ -14,7 +14,8 @@ class CacheEnabledApiClient extends ApiClient { } get(cache = false) { - if (cache) { + // eslint-disable-next-line no-underscore-dangle + if (cache && !window.__WOOT_ISOLATED_SHELL__) { return this.getFromCache(); }