Skip to content

Commit

Permalink
definite article (#33910)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelclement authored Jan 7, 2025
1 parent 8b2b13e commit 7d3bf61
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions src/applications/ivc-champva/10-10D/config/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -422,12 +422,13 @@ const formConfig = {
sponsorInfoTitle: titleUI('Sponsor status details'),
sponsorDOD: dateOfDeathUI('When did the sponsor die?'),
sponsorDeathConditions: yesNoUI({
title: 'Did sponsor die during active military service?',
title: 'Did the sponsor die during active military service?',
hint: ADDITIONAL_FILES_HINT,
labels: {
yes: 'Yes, sponsor passed away during active military service',
yes:
'Yes, the sponsor passed away during active military service',
no:
'No, sponsor did not pass away during active military service',
'No, the sponsor did not pass away during active military service',
},
}),
},
Expand Down Expand Up @@ -598,7 +599,7 @@ const formConfig = {
undefined,
false,
)}. This includes social security number, mailing address,
contact information, relationship to sponsor, and health
contact information, relationship to the sponsor, and health
insurance information.`,
),
},
Expand Down Expand Up @@ -770,7 +771,8 @@ const formConfig = {
path: 'applicant-relationship/:index',
arrayPath: 'applicants',
showPagePerItem: true,
title: item => `${applicantWording(item)} relationship to sponsor`,
title: item =>
`${applicantWording(item)} relationship to the sponsor`,
CustomPage: ApplicantRelationshipPage,
CustomPageReview: ApplicantRelationshipReviewPage,
schema: applicantListSchema([], {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ function marriageTitle(text, subtitle) {

const dateOfMarriageToSponsor = {
...currentOrPastDateUI({
title: 'Date of marriage to sponsor',
title: 'Date of marriage to the sponsor',
errorMessages: {
pattern: 'Please provide a valid date',
required: 'Please provide the date of marriage',
Expand All @@ -144,7 +144,7 @@ export const marriageDatesSchema = {
'ui:options': { viewField: ApplicantField },
items: {
'ui:options': marriageTitle(
' date of marriage to sponsor',
' date of marriage to the sponsor',
'If you don’t know the exact date, enter your best guess',
),
dateOfMarriageToSponsor,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ testNumberOfWebComponentFields(
formConfig.chapters.applicantInformation.pages.page18c.schema,
formConfig.chapters.applicantInformation.pages.page18c.uiSchema,
0,
'Applicant - relationship to sponsor',
'Applicant - relationship to the sponsor',
{ ...mockData.data },
);

Expand Down

0 comments on commit 7d3bf61

Please sign in to comment.