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(); }