From 41788163502207566c77e730fa40e7990acf0d68 Mon Sep 17 00:00:00 2001 From: Miguel Alatzar Date: Thu, 21 May 2020 14:04:08 -0700 Subject: [PATCH] Incrase redux-persist timeout to 1 min (#4322) --- 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);