Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
azliu0 committed Apr 27, 2024
1 parent a08b25c commit 200b26b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@tiptap/pm": "^2.1.12",
"@tiptap/react": "^2.1.12",
"@tiptap/starter-kit": "^2.1.12",
"@types/react-icons": "^3.0.0",
"node-fetch": "^3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion client/src/routes/inbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export default function InboxPage() {
// Otherwise fetches response from server
const formData = new FormData();
formData.append("id", currEmailID.toString());
console.log(formData);

fetch(`/api/emails/get_response`, {
method: "POST",
body: formData,
Expand Down

0 comments on commit 200b26b

Please sign in to comment.