Skip to content

Commit

Permalink
Merge pull request #46 from Team-Vivio/ci/1
Browse files Browse the repository at this point in the history
모달 api url 수정
  • Loading branch information
junanida authored May 20, 2024
2 parents 3be33c4 + 194a2f5 commit c0af328
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/views/component/Modal/ChangePasswordModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function ChangePasswordModal(props) {
function onSubmit() {
axios
.post(
"/users/changePassword",
"https://backend.vivi-o.site/users/changePassword",
{
originalPassword: curPassword,
password: newPassword,
Expand Down
2 changes: 1 addition & 1 deletion src/views/component/Modal/FindEmailModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function FindEmailModal(props) {
async function onSubmit() {
let date = new Date(`${year}-${month}-${day}`);
axios
.post("/users/findEmail", {
.post("https://backend.vivi-o.site/users/findEmail", {
name: name,
phoneNum: phone,
birthDate: date,
Expand Down
2 changes: 1 addition & 1 deletion src/views/component/Modal/FindPasswordModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function FindPasswordModal(props) {
setIsFindPasssword(false);
if (emailCheck(email)) {
axios
.post("/users/sendTempPassword", {
.post("https://backend.vivi-o.site/users/sendTempPassword", {
email: email,
})
.then((res) => {
Expand Down

0 comments on commit c0af328

Please sign in to comment.