From 38e08fce2b5327f6879a9142a240e1d26e7c7172 Mon Sep 17 00:00:00 2001 From: Daniel Ternyak Date: Wed, 13 Dec 2017 21:28:35 -0800 Subject: [PATCH] Fix Store Subscription Throttle Misconfiguration (#579) --- common/store.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/store.ts b/common/store.ts index 3bcf497d..458258be 100644 --- a/common/store.ts +++ b/common/store.ts @@ -114,8 +114,7 @@ const configureStore = () => { }, customTokens: state.customTokens }); - }), - 1000 + }, 1000) ); return store;