Skip to content

Commit 8591054

Browse files
committed
fix: update frontend
1 parent 337fada commit 8591054

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

client/src/components/company-input/company-input.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const CompanyInputForm: FC<CompanyInputFormProps> = (props) => {
6363
Input your data
6464
</Typography>
6565
<Typography>
66-
Please make sure your BWWC 2023 Submission ID and participation code match the ones provided in the email sent to you by the Boston Women's Workforce Council. Drag and
66+
Please make sure your BWWC 2025 Submission ID and participation code match the ones provided in the email sent to you by the Boston Women's Workforce Council. Drag and
6767
drop your completed template file to encrypt and include your submission in the aggregate data.
6868
</Typography>
6969
<Divider />
@@ -73,7 +73,7 @@ export const CompanyInputForm: FC<CompanyInputFormProps> = (props) => {
7373
<Form>
7474
<FormObserver />
7575
<Stack spacing={2}>
76-
<TextInput fullWidth name="submissionId" label="BWWC 2023 Submission ID" data-cy="submissionID" />
76+
<TextInput fullWidth name="submissionId" label="BWWC 2025 Submission ID" data-cy="submissionID" />
7777
<PasswordInput fullWidth name="participationCode" label="Participation code" data-cy="sessionCode" />
7878
<CompanyAutoCompleteInput fullWidth name="industry" options={Industries} label="Industry selection" data-cy="industry" />
7979
<CompanyAutoCompleteInput fullWidth name="size" options={Sizes} label="Size" data-cy="size" />

client/src/constants/default-data.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const raceData = {
1212
black: genderData,
1313
hawaiian: genderData,
1414
asian: genderData,
15+
middleEasternNorthAfrican: genderData,
1516
nativeAmerican: genderData,
1617
twoOrMore: genderData,
1718
unreported: genderData

client/src/utils/ethnicity.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export enum Ethnicity {
44
Black = 'black',
55
Hawaiian = 'hawaiian',
66
Asian = 'asian',
7+
MiddleEasternNorthAfrican = 'middleEasternNorthAfrican',
78
NativeAmerican = 'nativeAmerican',
89
TwoOrMore = 'twoOrMore',
910
Unreported = 'unreported'
@@ -15,6 +16,7 @@ export const EthnicityDisplayNames: Record<Ethnicity, string> = {
1516
[Ethnicity.Black]: 'Black / African American',
1617
[Ethnicity.Hawaiian]: 'Native Hawaiian or Pacific Islander',
1718
[Ethnicity.Asian]: 'Asian',
19+
[Ethnicity.MiddleEasternNorthAfrican]: 'Middle Eastern/North African',
1820
[Ethnicity.NativeAmerican]: 'American Indian / Alaska Native',
1921
[Ethnicity.TwoOrMore]: 'Two or More Races (Not Hispanic or Latinx)',
2022
[Ethnicity.Unreported]: 'Unreported'

0 commit comments

Comments
 (0)