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}`; }