Browse Source

console.log 주석처리

pull/2/head
qkr7828(박재우) 2 years ago
parent
commit
ea7903a0d2
  1. 2
      src/components/map/google/GoogleMap.js
  2. 4
      src/components/mapDraw/naver/search/NaverMapSearch.js
  3. 2
      src/containers/system/auth/SystemAuthContainer.js
  4. 2
      src/containers/system/user/SystemUserContainer.js
  5. 1
      src/modules/account/find/sagas/findSaga.ts
  6. 1
      src/modules/analysis/history/reducers/analysisHitoryReducer.ts
  7. 2
      src/views/testDraw/setting/ControlSetting.js

2
src/components/map/google/GoogleMap.js

@ -49,7 +49,7 @@ export const GoogleCustomMap = () => {
url: 'https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=drawing,geometryplaces'
};
console.log(`${mapProps.url}&key=${mapProps.key}`);
// console.log(`${mapProps.url}&key=${mapProps.key}`);
return (
<div style={{ width: '100vw', height: '100vh' }}>
<GoogleMapWrapped

4
src/components/mapDraw/naver/search/NaverMapSearch.js

@ -2,7 +2,7 @@ import { useEffect } from 'react';
export const NaverMapSearch = props => {
useEffect(() => {
console.log('>>>>', props.naver.maps.Service);
// console.log('>>>>', props.naver.maps.Service);
props.naver.maps.Service.geocode(
{
address: '산곡동'
@ -14,7 +14,7 @@ export const NaverMapSearch = props => {
var result = response.result, // 검색 결과의 컨테이너
items = result.items; // 검색 결과의 배열
console.log(result);
// console.log(result);
// do Something
}

2
src/containers/system/auth/SystemAuthContainer.js

@ -91,7 +91,7 @@ export const SystemAuthContainer = props => {
};
const handlerWidthrowConfirm = () => {
console.log('탈퇴!!!');
// console.log('탈퇴!!!');
};
const handlerGroupJoin = () => {

2
src/containers/system/user/SystemUserContainer.js

@ -93,7 +93,7 @@ export const SystemUserContainer = props => {
};
const handlerWidthrowConfirm = () => {
console.log('탈퇴!!!');
// console.log('탈퇴!!!');
};
const handlerGroupJoin = () => {

1
src/modules/account/find/sagas/findSaga.ts

@ -52,7 +52,6 @@ function* updatePwSaga(
const {userId, hpno, newPw} = action.payload;
const res = yield call(findAPI.updatePw, {userId, hpno, newPw});
console.log(res, '>>>')
yield put(Actions.updatePwAction.success(res));
} catch (error) {
yield put(Actions.updatePwAction.failure(error));

1
src/modules/analysis/history/reducers/analysisHitoryReducer.ts

@ -33,7 +33,6 @@ export const analysisHistoryReducer = createReducer<
)
.handleAction(Actions.detail.success, (state, action) =>
produce(state, draft => {
console.log('>>111>>>', action.payload);
const { detail } = action.payload;
draft.detail = detail;

2
src/views/testDraw/setting/ControlSetting.js

@ -19,7 +19,7 @@ const ControlSetting = props => {
const mapControl = useSelector(state => state.controlMapReducer);
useEffect(() => {
console.log('>>>>', mapControl);
// console.log('>>>>', mapControl);
}, [mapControl]);
const handlerMapType = val => {

Loading…
Cancel
Save