Skip to content

Commit b9d1822

Browse files
committed
(feat:env) use new API key
1 parent 931cd08 commit b9d1822

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

public/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ let currentCameraIndex = 0;
5656
const switchCameraButton = document.getElementById("switchCamera");
5757
let emailObject;
5858

59-
console.log(non_picture_section)
59+
console.log(switchCameraButton)
6060

6161
wantToTakeAPicture.addEventListener("click", () => {
6262
removeElements([pictureSectionHeadline, wantToTakeAPicture]);

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ app.post("/email", emailController.processEmail);
1616
app.post("/email_picture_section", emailPictureSectionController.processEmail)
1717

1818
app.use(express.static(path.join(__dirname, "public")));
19-
const port = process.env.PORT || 3000;
19+
const port = process.env.PORT || 3001;
2020
app.listen(port, () => {
2121
console.log(`Server running on port ${port}`);
2222
});

0 commit comments

Comments
 (0)