diff --git a/web/components/optional-profile-form.tsx b/web/components/optional-profile-form.tsx index 3894a8d..b2d3535 100644 --- a/web/components/optional-profile-form.tsx +++ b/web/components/optional-profile-form.tsx @@ -53,9 +53,10 @@ export const OptionalProfileUserForm = (props: { user: User buttonLabel?: string fromSignup?: boolean + bottomBarVisible?: boolean onSubmit?: () => Promise }) => { - const {profile, user, buttonLabel, setProfile, fromSignup, onSubmit} = props + const {profile, user, buttonLabel, setProfile, fromSignup, onSubmit, bottomBarVisible = true} = props const [isSubmitting, setIsSubmitting] = useState(false) const [lookingRelationship, setLookingRelationship] = useState((profile.pref_relation_styles || []).includes('relationship')) @@ -816,7 +817,7 @@ export const OptionalProfileUserForm = (props: {