From e5baff4132c70a40e32283323edf41bc9a4a130a Mon Sep 17 00:00:00 2001 From: seondal Date: Wed, 4 Sep 2024 04:09:37 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=82=EF=B8=8F=20edit=20:=20=20=EC=9E=84?= =?UTF-8?q?=EC=8B=9C=20=EC=BD=98=EC=86=94=EB=93=A4=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/config/privateApi.ts | 1 - src/components/Feed/Photo.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/src/apis/config/privateApi.ts b/src/apis/config/privateApi.ts index 465cecf..ae21a67 100644 --- a/src/apis/config/privateApi.ts +++ b/src/apis/config/privateApi.ts @@ -17,7 +17,6 @@ const privateApi: CustomInstance = axios.create({ privateApi.interceptors.response.use( (response) => response.data, (error) => { - console.log(error); const status = error.response?.status; console.log('🚀 ~ status:', status); if (status === ERROR_UNAUTHORIZED || status === ERROR_UNSUPPORTED_MEDIA_TYPE) { diff --git a/src/components/Feed/Photo.tsx b/src/components/Feed/Photo.tsx index f3af7fc..71da91f 100644 --- a/src/components/Feed/Photo.tsx +++ b/src/components/Feed/Photo.tsx @@ -13,7 +13,6 @@ interface PhotoI { export default function Photo({ data }: PhotoI) { const { imageKey, source, bookmarkCheck, poseId, width, height } = data; const [loaded, setLoaded] = useState(false); - console.log(width / height); return (