From cf67ad0d81f28a62cccf764b7bac9e17dc1b7842 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 1 Feb 2026 16:39:31 +0100 Subject: [PATCH] Fix --- web/components/optional-profile-form.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/components/optional-profile-form.tsx b/web/components/optional-profile-form.tsx index b2d35350..76593545 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 fromSignup?: boolean - bottomBarVisible?: boolean onSubmit?: () => Promise }) => { - const {profile, user, buttonLabel, setProfile, fromSignup, onSubmit, bottomBarVisible = true} = props + const {profile, user, buttonLabel, setProfile, fromSignup, onSubmit, classNameNext} = props const [isSubmitting, setIsSubmitting] = useState(false) const [lookingRelationship, setLookingRelationship] = useState((profile.pref_relation_styles || []).includes('relationship')) @@ -817,7 +817,7 @@ export const OptionalProfileUserForm = (props: {