최종 프로젝트 프론트 작업
export const getAllArtistGroups = async () => {
try {
const response = await axios.get(${API_BASE_URL}/artistgroup, {
headers: {
'Authorization': Bearer ${token}
},
withCredentials: true
});
return response.data;
} catch (error) {
console.error('Error fetching artist groups:', error);
throw error;
}
};
중복 선언된 getAllArtistGroups 함수 삭제