Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] Fix inconsistent applicant flow copy #261

Merged
merged 1 commit into from
Aug 17, 2022
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const ContactInformationSection: FC = () => {
{/* Check whether applicant has updated contact info */}
<RadioGroupField
name="updatedContactInfo"
label="Have you changed your contact information since you received or renewed your last parking pass?"
label="Have you changed your contact information since you received or renewed your last parking permit?"
required
value={
values.updatedContactInfo === null ? undefined : Number(values.updatedContactInfo)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const PersonalAddressSection: FC = () => {
{/* Check whether applicant has updated address */}
<RadioGroupField
name="updatedAddress"
label="Has your address changed since you received your last parking pass?"
label="Has your address changed since you received your last parking permit?"
required
value={values.updatedAddress === null ? undefined : Number(values.updatedAddress)}
>
Expand Down
2 changes: 1 addition & 1 deletion components/applicant/renewals/RenewalForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const RenewalForm: FC = () => {
isChecked={certified}
onChange={event => setCertified(event.target.checked)}
>
{`I certify that I am the holder of the accessible parking pass for which this
{`I certify that I am the holder of the accessible parking permit for which this
application for renewal is submitted, and that I have personally provided all of the
information required in this application.`}
</Checkbox>
Expand Down