Skip to content

Commit

Permalink
Try
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaloney111 committed Jun 6, 2024
1 parent 716335b commit a3105fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/express-backend/backend.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ app.post(

const pfp = { profilePicture: result._id };

fetch(`http://localhost:8000/users/${user._id}`, {
fetch(`safehaven307.azurewebsites.net/users/${user._id}`, {
method: "PATCH",
headers: {
"Content-Type": "application/json"
Expand Down Expand Up @@ -379,5 +379,5 @@ app.delete("/order-units/:id", userService.authenticateUser, (req, res) => {
});

app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`);
console.log(`Example app listening at safehaven307.azurewebsites.net:${port}`);
});

0 comments on commit a3105fb

Please sign in to comment.