From 33ce2c9624830a0a03817785db0bb2c1699846a8 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 1 Feb 2026 17:22:29 +0100 Subject: [PATCH] Fix --- web/components/optional-profile-form.tsx | 9 ++++++--- web/pages/signup.tsx | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) 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: {