From b99f2fe0e8c331aa124fc35dabae28d2e4eb5444 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Tue, 19 Dec 2017 20:39:17 -0600 Subject: [PATCH] Lower LocalStorage Store Throttle (#640) --- common/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/store.ts b/common/store.ts index d2893db3..0dd61369 100644 --- a/common/store.ts +++ b/common/store.ts @@ -135,7 +135,7 @@ const configureStore = () => { }, customTokens: state.customTokens }); - }, 1000) + }, 50) ); return store;