From 8dd206d32d1bd38861296f8ca2e370d9b70f9fd1 Mon Sep 17 00:00:00 2001 From: nevermoregb Date: Thu, 13 Mar 2025 19:07:02 +0900 Subject: [PATCH] =?UTF-8?q?console.log=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/common.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/common/common.js b/src/common/common.js index cf4dfc2..24dcf2d 100644 --- a/src/common/common.js +++ b/src/common/common.js @@ -125,23 +125,18 @@ const common = { * @returns */ getProfileImage(profileImg, isAnonymous = false) { - console.log('profileImg: ', profileImg); const defaultProfileImg = '/img/icons/icon.png'; // 기본 프로필 이미지 경로 const anonymousImg = '/img/avatars/default-Profile.jpg'; // 익명 이미지 let profileImgUrl = isAnonymous ? anonymousImg : defaultProfileImg; - console.log('profileImgUrl: ', profileImgUrl); const UserProfile = `${import.meta.env.VITE_SERVER}upload/img/profile/${profileImg}`; return !profileImg || profileImg === '' ? profileImgUrl : UserProfile; }, setDefaultImage(event, deafultImg = '/img/icons/icon.png') { - console.log('deafultImg: ', deafultImg); - console.log('event: ', event); return (event.target.src = deafultImg); }, showImage(event) { - console.log('event: ', event); return (event.target.style.visibility = 'visible'); }, };