diff --git a/api/player/apis.ts b/api/player/apis.ts index 4ae0268..759faea 100644 --- a/api/player/apis.ts +++ b/api/player/apis.ts @@ -4,7 +4,7 @@ const BASE_URL = process.env.NEXT_PUBLIC_API_KEY; // player - 코치 리스트 export const getCoachList = async (): Promise => { - const url = `${BASE_URL}/player/coach`; + const url = `${BASE_URL}/player/coachlist`; const res = await fetch(url, { method: "GET" }); if (!res.ok) {