diff --git a/web/components/optional-profile-form.tsx b/web/components/optional-profile-form.tsx index 8aa48d17..6d3ccd8d 100644 --- a/web/components/optional-profile-form.tsx +++ b/web/components/optional-profile-form.tsx @@ -464,7 +464,7 @@ export const OptionalProfileUserForm = (props: { } }} className={'w-16'} - value={heightFeet ? Math.floor(heightFeet) : ''} + value={typeof heightFeet === 'number' ? Math.floor(heightFeet) : ''} />