We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c17eba commit f6be8a4Copy full SHA for f6be8a4
components/EmailForm.tsx
@@ -15,10 +15,6 @@ const EmailForm: React.FC<Props> = ({ characters }) => {
15
const random = Math.floor(Math.random() * (characters.length - 1));
16
const randomCharacter = characters[random];
17
18
- console.log("email: ", email);
19
- console.log("name: ", randomCharacter?.name);
20
- console.log("species: ", randomCharacter?.species);
21
-
22
// Make send email request to /api/send-email
23
fetch("http://localhost:3000/api/send-email", {
24
method: "POST",
0 commit comments