From 6cf1140a0f40007f27eab67e74aef0da2625a39b Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Thu, 21 May 2020 23:24:19 +0200 Subject: [PATCH] Incrase redux-persist timeout to 1 min (#4324) Co-authored-by: Miguel Alatzar --- app/store/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/store/index.ts b/app/store/index.ts index 6a8384827..731c70c14 100644 --- a/app/store/index.ts +++ b/app/store/index.ts @@ -178,6 +178,7 @@ export default function configureStore(storage: any, preloadedState: any = {}, o emojiBlackListFilter, ], throttle: 100, + timeout: 60000, }; const persistConfig: PersistConfig = Object.assign({}, defaultConfig, optionalConfig);