Revert "Add postal code field to /fiscal-sponsorship/apply (#1185)"

This reverts commit 6e3349a818.
This commit is contained in:
Sam Poder 2024-05-02 09:06:45 -07:00
parent 6e3349a818
commit 05ab34cbc0
3 changed files with 0 additions and 15 deletions

View file

@ -54,18 +54,6 @@ export default function OrganizationInfoForm({ requiredFields }) {
))}
</Select>
</Field>
<Field
name="eventPostalCode"
label={`ZIP code / postal code`}
description="If your organization runs online, please put your own postal code."
requiredFields={requiredFields}
>
<Input
name="eventPostalCode"
id="eventPostalCode"
placeholder="90069"
/>
</Field>
<Field
name="transparent"
label="Transparency mode"

View file

@ -16,7 +16,6 @@ export default async function handler(req, res) {
email: data.userEmail,
name: data.eventName,
country: getCode(data.eventLocation) || '',
postal_code: data.eventPostalCode || '',
transparent: data.transparent,
}),
method: 'POST',
@ -35,7 +34,6 @@ export default async function handler(req, res) {
'Date of Birth': data.userBirthday,
'Event Name': data.eventName,
'Event Website': data.eventWebsite,
'Event Postal Code': data.eventPostalCode,
'Tell us about your event': data.eventDescription,
'Mailing Address': data.userAddress,
'Address Line 1': data.addressLine1,

View file

@ -23,7 +23,6 @@ export default function Apply() {
const requiredFields = [
'eventName',
'eventLocation',
'eventPostalCode',
'eventDescription',
'firstName',
'lastName',