This commit is contained in:
MartinBraquet
2025-09-16 21:07:02 +02:00
parent 87bc962c88
commit 0f05304ec3

View File

@@ -42,7 +42,7 @@ export const OptionalLoveUserForm = (props: {
const {lover, user, buttonLabel, setLover, fromSignup, onSubmit} = props
const [isSubmitting, setIsSubmitting] = useState(false)
const [lookingRelationship, setlookingRelationship] = useState(false)
const [lookingRelationship, setLookingRelationship] = useState(false)
const router = useRouter()
const [heightFeet, setHeightFeet] = useState<number | undefined>(
lover.height_in_inches
@@ -534,7 +534,7 @@ export const OptionalLoveUserForm = (props: {
<ChoicesToggleGroup
currentChoice={lookingRelationship}
choicesMap={{Yes: true, No: false}}
setChoice={(c) => setlookingRelationship(c)}
setChoice={(c) => setLookingRelationship(c)}
/>
</Col>