From 657ae63c95a341a5fcf31025c20fec221625f62a Mon Sep 17 00:00:00 2001 From: Wibaek Park Date: Mon, 12 May 2025 23:53:40 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=ED=9A=8C=EC=9B=90=ED=83=88=ED=87=B4?= =?UTF-8?q?=EC=8B=9C=20API=20METHOD=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/auth.ts b/src/services/auth.ts index 0bde6908..fd3ec68a 100644 --- a/src/services/auth.ts +++ b/src/services/auth.ts @@ -42,7 +42,7 @@ export const signUpApi = (signUpRequest: SignUpRequest): Promise> => axiosInstance.post("/auth/sign-out"); -export const deleteAccountApi = (): Promise> => axiosInstance.patch("/auth/quit"); +export const deleteAccountApi = (): Promise> => axiosInstance.delete("/auth/quit"); export const reissueAccessTokenPublicApi = (refreshToken: string): Promise> => publicAxiosInstance.post("/auth/reissue", {}, { headers: { Authorization: `Bearer ${refreshToken}` } });