From 67a8832fd3e9b3d933fb808802cdc64c05cacc7c Mon Sep 17 00:00:00 2001 From: jero Date: Tue, 4 Jun 2019 00:35:21 +0300 Subject: [PATCH] refactor(configureStore): add $FlowFixMe to composeEnhancers --- src/app/store/configureStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/store/configureStore.js b/src/app/store/configureStore.js index 319e437e..f62fcc93 100644 --- a/src/app/store/configureStore.js +++ b/src/app/store/configureStore.js @@ -23,7 +23,7 @@ const devtools = typeof window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ === 'function' && // when the extension is not installed, we’re using Redux compose here. window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({ actionsBlacklist: [] }); -// +// $FlowFixMe const composeEnhancers: StoreEnhancer> = devtools || compose; function configureStore() {