can't be empty

This commit is contained in:
Christopher Arraya 2023-07-07 00:53:47 -04:00
parent 2cb9783cca
commit 12ed50d96b

View File

@ -15,6 +15,11 @@ export default function Home() {
const [submitted, setSubmitted] = useState(false);
async function handleSubmit(e: any) {
e.preventDefault(); // prevent the default form submission behavior
if (!email) {
setAlertType("error");
setAlertMessage("Please enter an email.");
return;
} // if the email field is empty, do nothing
const res = await fetch("/api/waitlist", {
method: "POST", // specify the HTTP method
headers: { "Content-Type": "application/json" }, // specify the content type