From f1940a1bf34ebb870221ee126890b093e83d8aad Mon Sep 17 00:00:00 2001 From: Andrey Mikhadyuk Date: Thu, 30 Nov 2023 16:44:01 +0400 Subject: [PATCH] return caching of feedByCommonIdStates --- src/store/transforms.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/store/transforms.ts b/src/store/transforms.ts index ff67584549..b8622cbe89 100644 --- a/src/store/transforms.ts +++ b/src/store/transforms.ts @@ -85,6 +85,7 @@ export const cacheTransform = createTransform( (inboundState: CacheState) => ({ ...INITIAL_CACHE_STATE, userStates: clearNonFinishedStates(inboundState.userStates), + feedByCommonIdStates: inboundState.feedByCommonIdStates, }), (outboundState: CacheState) => outboundState, { whitelist: ["cache"] },