From 20006049d0851a53783ac4a9996e8553e3d68794 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 1 Feb 2026 16:31:27 +0100 Subject: [PATCH] Fix --- web/components/optional-profile-form.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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: {