This commit is contained in:
Vim 2022-03-02 17:16:23 -05:00 committed by GitHub
parent 1f5633ef74
commit ec139b113f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 15 deletions

View file

@ -31,38 +31,38 @@ export const PAGE_INTRO = defineMessages({
}, },
}); });
export const CENSUS_TRACK_FEEDBACK = { export const CENSUS_TRACT_FEEDBACK = {
TITLE: <FormattedMessage TITLE: <FormattedMessage
id={'contact.page.census.track.feedback.title'} id={'contact.page.census.tract.feedback.title'}
defaultMessage={`Census track feedback`} defaultMessage={`Census tract feedback`}
description={'census track feedback section'} description={'census tract feedback section'}
/>, />,
PARAGRAPH1: <FormattedMessage PARAGRAPH1: <FormattedMessage
id={'contact.page.census.track.feedback.para1'} id={'contact.page.census.tract.feedback.para1'}
defaultMessage={` defaultMessage={`
To provide feedback about a specific census tract, either select the send feedback button after To provide feedback about a specific census tract, either select the send feedback button after
finding a tract on the {exploreLink} page or use the email address provided above. Please finding a tract on the {exploreLink} page or use the email address provided above. Please
include the census tract ID, county, and state or territory information, in addition to your feedback. include the census tract ID, county, and state or territory information, in addition to your feedback.
`} `}
description={'census track feedback section'} description={'census tract feedback section'}
values={{ values={{
exploreLink: <Link to={'/cejst'}>Explore the tool</Link>, exploreLink: <Link to={'/cejst'}>Explore the tool</Link>,
}} }}
/>, />,
PARAGRAPH2: <FormattedMessage PARAGRAPH2: <FormattedMessage
id={'contact.page.census.track.feedback.para2'} id={'contact.page.census.tract.feedback.para2'}
defaultMessage={` defaultMessage={`
If there are specific data indicators that could be improved or changed, please include that If there are specific data indicators that could be improved or changed, please include that
information in the body of the email. information in the body of the email.
`} `}
description={'census track feedback section'} description={'census tract feedback section'}
/>, />,
PARAGRAPH3: <FormattedMessage PARAGRAPH3: <FormattedMessage
id={'contact.page.census.track.feedback.para1'} id={'contact.page.census.tract.feedback.para1'}
defaultMessage={` defaultMessage={`
In addition, you can provide feedback on the tool via this {improvementSurvey}. In addition, you can provide feedback on the tool via this {improvementSurvey}.
`} `}
description={'census track feedback section'} description={'census tract feedback section'}
values={{ values={{
improvementSurvey: <LinkTypeWrapper improvementSurvey: <LinkTypeWrapper
linkText={'survey'} linkText={'survey'}

View file

@ -304,7 +304,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
. .
</p> </p>
<h3> <h3>
Census track feedback Census tract feedback
</h3> </h3>
<p> <p>

View file

@ -41,10 +41,10 @@ const ContactPage = ({location}: IContactPageProps) => {
/>, />,
}}/> }}/>
</p> </p>
<h3>{CONTACT_COPY.CENSUS_TRACK_FEEDBACK.TITLE}</h3> <h3>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.TITLE}</h3>
<p>{CONTACT_COPY.CENSUS_TRACK_FEEDBACK.PARAGRAPH1}</p> <p>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.PARAGRAPH1}</p>
<p>{CONTACT_COPY.CENSUS_TRACK_FEEDBACK.PARAGRAPH2}</p> <p>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.PARAGRAPH2}</p>
<p>{CONTACT_COPY.CENSUS_TRACK_FEEDBACK.PARAGRAPH3}</p> <p>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.PARAGRAPH3}</p>
</Grid> </Grid>
</Grid> </Grid>
</J40MainGridContainer> </J40MainGridContainer>