Skip to content
Snippets Groups Projects
Commit b4858ba0 authored by 정원제's avatar 정원제 :guitar:
Browse files

refactor: signup response 값 제거

parent e4570cc4
No related branches found
No related tags found
No related merge requests found
Pipeline #10865 passed
...@@ -2,8 +2,7 @@ import api from '../axios'; ...@@ -2,8 +2,7 @@ import api from '../axios';
const axiosSignup = async ({ email, password, nickname }) => { const axiosSignup = async ({ email, password, nickname }) => {
try { try {
const response = await api.post(`/auth/signup`, { email, password, nickname }); await api.post(`/auth/signup`, { email, password, nickname })
return "signup success";
} catch (error) { } catch (error) {
console.error("회원가입 요청 중 오류 발생:", error); console.error("회원가입 요청 중 오류 발생:", error);
throw error; throw error;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment