From 2f010fe14a52332fd20fb4ce203035a9ec6a595f Mon Sep 17 00:00:00 2001 From: MyungJiwoo <1206jiwoo@gmail.com> Date: Wed, 25 Sep 2024 19:56:03 +0900 Subject: [PATCH] =?UTF-8?q?#87=20fix:=20=ED=8C=80=20=EB=8C=80=EC=8B=9C?= =?UTF-8?q?=EB=B3=B4=EB=93=9C=20=ED=83=88=ED=87=B4=20api=20=EC=98=A4?= =?UTF-8?q?=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/BoardApi.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/BoardApi.tsx b/src/api/BoardApi.tsx index ec34d23..fb2f71b 100644 --- a/src/api/BoardApi.tsx +++ b/src/api/BoardApi.tsx @@ -110,7 +110,7 @@ export const deletePersonalDashboard = async (id: string): Promise => { // * 팀 대시보드 탈퇴 export const quitTeamDashboard = async (id: string): Promise => { try { - const response = await axiosInstance.delete(`/dashboards/team/${id}/leave}`); + const response = await axiosInstance.post(`/dashboards/team/${id}/leave`); // return response.data.data; console.log(response); } catch (error) {