mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-04-16 12:38:19 -04:00
Fix age input
This commit is contained in:
@@ -464,7 +464,7 @@ export const OptionalProfileUserForm = (props: {
|
||||
}
|
||||
}}
|
||||
className={'w-16'}
|
||||
value={heightFeet ? Math.floor(heightFeet) : ''}
|
||||
value={typeof heightFeet === 'number' ? Math.floor(heightFeet) : ''}
|
||||
/>
|
||||
</Col>
|
||||
<Col>
|
||||
@@ -481,7 +481,7 @@ export const OptionalProfileUserForm = (props: {
|
||||
}
|
||||
}}
|
||||
className={'w-16'}
|
||||
value={heightInches ? Math.floor(heightInches) : ''}
|
||||
value={typeof heightInches === 'number' ? Math.floor(heightInches) : ''}
|
||||
/>
|
||||
</Col>
|
||||
<div className="self-end mb-2 text-ink-700 mx-2">OR</div>
|
||||
|
||||
Reference in New Issue
Block a user