From 006f817faa7938926a555721628bb8d8d7b918fa Mon Sep 17 00:00:00 2001 From: sachaaaaa Date: Wed, 13 Nov 2019 16:51:58 +1100 Subject: [PATCH] make linter happy --- ts/state/createStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/state/createStore.ts b/ts/state/createStore.ts index c2b3cbb35..13e17fb76 100644 --- a/ts/state/createStore.ts +++ b/ts/state/createStore.ts @@ -25,7 +25,7 @@ const logger = createLogger({ }); // Exclude logger if we're in production mode -const disableLogging = true || env === 'production'; // ALWAYS TURNED OFF +const disableLogging = env === 'production' || true; // ALWAYS TURNED OFF const middlewareList = disableLogging ? [promise] : [promise, logger]; const enhancer = applyMiddleware.apply(null, middlewareList);