Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
i forgot about the semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
EmperorNumerius authored May 29, 2024
1 parent ddca4d7 commit 5d7c978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if (Astro.request.method === "POST") {
try {
const data = await Astro.request.formData();
const name = data.get("name");
const email = data.get("email);
const email = data.get("email");
const response = await fetch('https://catapult.purplebubble.org/api/subscribe', {
method: 'POST',
headers: {
Expand Down

0 comments on commit 5d7c978

Please sign in to comment.