From 5c23af2b0549d356bb66f1f314175787b3f4ffa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=A7=D0=B8=D0=BA=D0=B0=D0=BB=D0=BA=D0=B8=D0=BD?= Date: Thu, 24 Sep 2020 13:34:37 +0300 Subject: [PATCH] remove console.logs --- src/client/stores/CalculationStore/Effects/reaction.ts | 1 - src/index.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/src/client/stores/CalculationStore/Effects/reaction.ts b/src/client/stores/CalculationStore/Effects/reaction.ts index 2356586..7cd25cb 100644 --- a/src/client/stores/CalculationStore/Effects/reaction.ts +++ b/src/client/stores/CalculationStore/Effects/reaction.ts @@ -69,7 +69,6 @@ const reactionEffects: IReactionEffect[] = [ }, }) .then(doubleAgents => { - console.log('doubleAgents', doubleAgents); calculationStore.setOptions('selectCalcDoubleAgent', doubleAgents); calculationStore.setValue( 'calcDoubleAgent', diff --git a/src/index.tsx b/src/index.tsx index 525c06c..560af9c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -9,7 +9,6 @@ import { API_PORT } from './core/constants/urls'; const isDevelopmentMode = process.env.NODE_ENV === 'development'; if (isDevelopmentMode) { - console.log(window.location); axios.defaults.baseURL = `http://${window.location.hostname}:${API_PORT}`; }