'8월 3일' 타오름 달 첫째 주 토요일의 기록 [TIL]

가은·2024년 8월 3일
0

I Learned [본 캠프]

목록 보기
117/135
post-thumbnail

📑오늘 학습한 내용

최종 프로젝트 프론트 작업

  • 아티스트 피드 작성
  • 필요 없는 페이지 삭제 및 리팩토링
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 함수 삭제

0개의 댓글