diff --git a/frontend/src/apis/getApi.ts b/frontend/src/apis/getApi.ts index a7a92b69..65849cc4 100644 --- a/frontend/src/apis/getApi.ts +++ b/frontend/src/apis/getApi.ts @@ -15,6 +15,9 @@ export const getApi = async ( }, }); + console.log('response', response); + console.log('responseJson', response.json()); + const responseData: T = await response.json(); if (response.status !== 200) { throw new Error('API 요청에 실패했습니다.');