From 482a84f5b6c905f45fdee04c2481b2a72b2a1264 Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 11 Oct 2016 16:25:41 +1300 Subject: [PATCH] Corrects Reactotron Blacklist Config closes infinitered/ignite#423 --- ignite-base/App/Redux/CreateStore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ignite-base/App/Redux/CreateStore.js b/ignite-base/App/Redux/CreateStore.js index de6da15c7..055d694fa 100644 --- a/ignite-base/App/Redux/CreateStore.js +++ b/ignite-base/App/Redux/CreateStore.js @@ -47,8 +47,8 @@ export default (rootReducer, rootSaga) => { isActionImportant: action => action.type === StartupTypes.STARTUP, - // you can flag to completely ignore certain types too... especially the chatty ones - ignore: [...SAGA_LOGGING_BLACKLIST] + // you can flag to exclude certain types too... especially the chatty ones + except: [...SAGA_LOGGING_BLACKLIST] }) enhancers.push(reactotronEnhancer) }