Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions src/components/mentorship/Step1BasicInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,9 @@ const Step1BasicInfo = () => {
component="legend"
sx={{ mb: 0.5, color: 'text.primary' }}
>
Are you open to mentoring individuals who do not identify as
women? *
Our community prioritizes supporting women and underrepresented
genders in tech. Are you open to mentoring mentees of all gender
identities? *
</FormLabel>

<Controller
Expand All @@ -433,7 +434,7 @@ const Step1BasicInfo = () => {
render={({ field }) => (
<RadioGroup
row
aria-label="open to mentoring non-women"
aria-label="mentoring preferences"
value={
field.value !== undefined && field.value !== null
? String(field.value)
Expand All @@ -444,12 +445,12 @@ const Step1BasicInfo = () => {
<FormControlLabel
value="true"
control={<Radio />}
label="Yes"
label="Yes, open to mentoring people of all genders"
/>
<FormControlLabel
value="false"
control={<Radio />}
label="No"
label="I prefer to focus on women and non-binary individuals"
/>
</RadioGroup>
)}
Expand Down
Loading