diff --git a/web/components/optional-profile-form.tsx b/web/components/optional-profile-form.tsx index 76593545..ee90d3d0 100644 --- a/web/components/optional-profile-form.tsx +++ b/web/components/optional-profile-form.tsx @@ -52,11 +52,11 @@ export const OptionalProfileUserForm = (props: { setProfile: (key: K, value: ProfileWithoutUser[K]) => void user: User buttonLabel?: string - classNameNext?: string + bottomNavBarVisible?: boolean fromSignup?: boolean onSubmit?: () => Promise }) => { - const {profile, user, buttonLabel, setProfile, fromSignup, onSubmit, classNameNext} = props + const {profile, user, buttonLabel, setProfile, fromSignup, onSubmit, bottomNavBarVisible = true} = props const [isSubmitting, setIsSubmitting] = useState(false) const [lookingRelationship, setLookingRelationship] = useState((profile.pref_relation_styles || []).includes('relationship')) @@ -817,7 +817,10 @@ export const OptionalProfileUserForm = (props: {