diff --git a/src/stores/GroupStoreCache.js b/src/stores/GroupStoreCache.js index 551b155615..df5ffcda5e 100644 --- a/src/stores/GroupStoreCache.js +++ b/src/stores/GroupStoreCache.js @@ -33,8 +33,7 @@ class GroupStoreCache { } } -let singletonGroupStoreCache = null; -if (!singletonGroupStoreCache) { - singletonGroupStoreCache = new GroupStoreCache(); +if (global.singletonGroupStoreCache === undefined) { + global.singletonGroupStoreCache = new GroupStoreCache(); } -module.exports = singletonGroupStoreCache; +export default global.singletonGroupStoreCache;