Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
qria committed Dec 10, 2022
1 parent 1513261 commit a46ce92
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions frontend/src/Pages/RegisterPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export default function RegisterPage() {
const enterednn = lovernicknameInputRef.current!.value;
const enteredlg = lovergenderInputRef.current!.value;
const enteredla = loverageInputRef.current!.value;
console.log("enteredemail:", enteredemail)

if (enteredemail != null && enteredpw != null) {
const response = await Axios.post(BACKEND_URL + "/user/register/", {
Expand All @@ -47,7 +46,6 @@ export default function RegisterPage() {
, "loverage": enteredla, "lovergender": enteredlg
}
);
console.log(response.status)
if (response.status == 201) {
alert("회원가입이 완료되었습니다");
navigate('/userpage');
Expand Down

0 comments on commit a46ce92

Please sign in to comment.