diff --git a/src/components/giving/GivingForm.astro b/src/components/giving/GivingForm.astro index 23d8327..9acfd6c 100644 --- a/src/components/giving/GivingForm.astro +++ b/src/components/giving/GivingForm.astro @@ -104,6 +104,16 @@ const { user } = Astro.props; required />

+

+
+ +


{ const city = form.get("city"); const state = form.get("state"); const zip = form.get("zip"); + const country = form.get("country"); const tshirt = form.get("tshirt"); await registerSub({ @@ -40,6 +41,7 @@ export const POST: APIRoute = async ({ request, cookies, redirect }) => { city, state, zip, + country, tshirt, });