From 10a8152c5cdc2b65436238e5007e4ea42d61d825 Mon Sep 17 00:00:00 2001 From: Roberto Musso Date: Sun, 12 Apr 2026 10:06:47 +0200 Subject: [PATCH] feat(i18n): send current language in waitlist form POST body --- index.html | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index 5b607f2..2c2cded 100644 --- a/index.html +++ b/index.html @@ -1156,17 +1156,19 @@ adiuvAI -
- EN -
- - - - - -
-
- Join the waitlist + @@ -1674,7 +1676,7 @@ const res = await fetch('/api/v1/waitlist', { method: 'POST', headers: { 'Content-Type': 'application/json' }, - body: JSON.stringify({ email }), + body: JSON.stringify({ email, lang }), }); if (!res.ok) throw new Error(res.statusText);