Skip to content

Commit

Permalink
Url fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PranotiPD committed May 18, 2024
1 parent d36ffef commit ff34403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/controllers/ResetPassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exports.resetPasswordToken = async (request, response) => {
{ new: true }
);
//Create an Url
const url = `http://localhost:3000/update-password/${token}`;
const url = `https://edtech-dev-g-frontend.vercel.app/update-password/${token}`;
//Send a mail
await mailSender(email, "Reset Password Link", `Link: ${url}`);
//return response
Expand Down

0 comments on commit ff34403

Please sign in to comment.