remove console.logs

This commit is contained in:
Владислав Чикалкин 2020-09-24 13:34:37 +03:00
parent 47660d8483
commit 5c23af2b05
2 changed files with 0 additions and 2 deletions

View File

@ -69,7 +69,6 @@ const reactionEffects: IReactionEffect[] = [
},
})
.then(doubleAgents => {
console.log('doubleAgents', doubleAgents);
calculationStore.setOptions('selectCalcDoubleAgent', doubleAgents);
calculationStore.setValue(
'calcDoubleAgent',

View File

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