diff --git a/src/api/fetchApi.ts b/src/api/fetchApi.ts index ce4adee329..a102d9413a 100644 --- a/src/api/fetchApi.ts +++ b/src/api/fetchApi.ts @@ -3,7 +3,7 @@ export const fetchApi = async (url: string, options: RequestInit) => { const response = await fetch(url, options); - if (!response.ok) throw new Error('에러가 발생하였습니다.'); + if (!response.ok) throw new Error('[ERROR] 에러가 발생하였습니다.'); const contentType = response.headers.get('content-type');