From 97f511ffb4ed412f9e89db1dd2c58ba7e83105a4 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 29 May 2024 17:40:04 -0400 Subject: [PATCH] remove console logs, oopsies --- src/components/Head.astro | 2 -- src/components/Newsletter.astro | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/components/Head.astro b/src/components/Head.astro index 194af3e..aca4637 100644 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -12,8 +12,6 @@ const keywords = [ "static analysis", ]; -console.log({ image }); - const metaPairs = [ { content: description, diff --git a/src/components/Newsletter.astro b/src/components/Newsletter.astro index 9c59f52..07c336c 100644 --- a/src/components/Newsletter.astro +++ b/src/components/Newsletter.astro @@ -63,8 +63,6 @@ const { class: className, ...rest } = Astro.props; .then((response) => [response.ok, response.json(), response] as const) .then(([ok, dataPromise, response]) => { dataPromise.then((data) => { - console.log({ data }); - if (ok) { setMessage("Thanks for signing up!", "happy"); form.reset();