Skip to content

Commit

Permalink
Merge pull request #52 from info-dsm/#29-CreateNotice
Browse files Browse the repository at this point in the history
#51 create notice
  • Loading branch information
drainxc authored Dec 2, 2022
2 parents 4cef9d2 + a6d82ba commit 68afda4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/pages/teacherPage/auth/signIn/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const TeacherSignIn = () => {
const submit = () => {
if (!Object.values(data).includes("")) {
axios({
url: BaseUrl + "/auth/login",
url: BaseUrl + "/auth/login/user",
method: "post",
data: {
email: data.email,
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/teacherPage/auth/signUp/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const TeacherSignUp = () => {
state: "success",
message: "계정이 성공적으로 생성되었습니다.",
}).then(() => {
window.location.href = "/student/login";
window.location.href = "/teacher/login";
});
})
.catch(() => {
Expand Down

0 comments on commit 68afda4

Please sign in to comment.