From 26853c2be9a9ce1b85e463b1ca7c3647e5459d14 Mon Sep 17 00:00:00 2001 From: Taewoo Park Date: Wed, 10 Dec 2025 21:54:11 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=9A=8C=EC=9B=90=EA=B0=80=EC=9E=85=20A?= =?UTF-8?q?PI=20=ED=98=B8=EC=B6=9C=20=EC=97=94=EB=93=9C=ED=8F=AC=EC=9D=B8?= =?UTF-8?q?=ED=8A=B8=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/auth/ui/SignUpForm/SignUpForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/auth/ui/SignUpForm/SignUpForm.tsx b/src/features/auth/ui/SignUpForm/SignUpForm.tsx index 3190de6..f189058 100644 --- a/src/features/auth/ui/SignUpForm/SignUpForm.tsx +++ b/src/features/auth/ui/SignUpForm/SignUpForm.tsx @@ -135,7 +135,7 @@ export const SignUpForm = ({ onSuccess, onError }: SignUpFormProps) => { }; console.log(body); - const res = await apiFetch("/api/users/", { + const res = await apiFetch("/api/users", { method: "POST", body: JSON.stringify(body), noAuth: true,