From 567f02f2dc59033e6b0f66f451f627c83c675942 Mon Sep 17 00:00:00 2001 From: flooorianflo Date: Wed, 24 Jan 2024 22:55:10 +0100 Subject: [PATCH] feat: add origin to waitlist --- api/waitlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/waitlist.js b/api/waitlist.js index 3e99c4b6..29036024 100644 --- a/api/waitlist.js +++ b/api/waitlist.js @@ -21,7 +21,7 @@ export default async function handler(req, res) { headers: { "Content-Type": "application/json", }, - body: JSON.stringify({ email }), + body: JSON.stringify({ email: email, origin: "florians-site" }), }) res.statusCode = 200 res.end()