mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
Revert "Add postal code field to /fiscal-sponsorship/apply (#1185)"
This reverts commit 6e3349a818.
This commit is contained in:
parent
6e3349a818
commit
05ab34cbc0
3 changed files with 0 additions and 15 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -23,7 +23,6 @@ export default function Apply() {
|
|||
const requiredFields = [
|
||||
'eventName',
|
||||
'eventLocation',
|
||||
'eventPostalCode',
|
||||
'eventDescription',
|
||||
'firstName',
|
||||
'lastName',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue