Skip to content

Commit

Permalink
Adds back returning user checkbox (#1430)
Browse files Browse the repository at this point in the history
* Adds back returning user checkbox

fixes #1429

* Update personal-form.js

---------

Co-authored-by: Sam Poder <[email protected]>
  • Loading branch information
sarthaktexas and sampoder authored Dec 5, 2024
1 parent 389a22a commit dce9d93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/fiscal-sponsorship/apply/personal-form.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Input, Flex, Label, Radio, Grid, Select } from 'theme-ui'
import { Input, Flex, Label, Radio, Grid, Select, Checkbox } from 'theme-ui'
import Field from './field'
import { useEffect, useState } from 'react'
import { useTeenagerLedContext } from './teenager-led-context'
Expand Down Expand Up @@ -155,6 +155,7 @@ export default function PersonalInfoForm({ requiredFields }) {
placeholder="Max"
/>
</Field>
*/}
<Field
name="returningUser"
label="Have you used HCB before?"
Expand All @@ -163,7 +164,7 @@ export default function PersonalInfoForm({ requiredFields }) {
>
<Checkbox name="returningUser" />
</Field>
<Field
{/* <Field
name="userAddress"
label="Address"
description="This is so we can send you some swag and goodies if you ever request them!"
Expand All @@ -175,7 +176,6 @@ export default function PersonalInfoForm({ requiredFields }) {
setValidationResult={setValidationResult}
/>
</Field>
*/}
<Field
name="accommodations"
Expand Down

0 comments on commit dce9d93

Please sign in to comment.