diff --git a/src/components/Newsletter.astro b/src/components/Newsletter.astro
index 3ee4f90..8224594 100644
--- a/src/components/Newsletter.astro
+++ b/src/components/Newsletter.astro
@@ -23,7 +23,12 @@ const { class: className, ...rest } = Astro.props;
Enter your email for deadlines, announcements, and other great
SquiggleConf news.
-
+
@@ -57,7 +62,7 @@ const { class: className, ...rest } = Astro.props;
const email = emailInput.value;
const formBody = "userGroup=&email=" + encodeURIComponent(email);
-
+ console.log({ formBody });
fetch(form.action, {
method: "POST",
body: formBody,