mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-22 17:44:20 -08:00
Fix typo (#1361)
This commit is contained in:
parent
1f5633ef74
commit
ec139b113f
3 changed files with 15 additions and 15 deletions
|
@ -31,38 +31,38 @@ export const PAGE_INTRO = defineMessages({
|
|||
},
|
||||
});
|
||||
|
||||
export const CENSUS_TRACK_FEEDBACK = {
|
||||
export const CENSUS_TRACT_FEEDBACK = {
|
||||
TITLE: <FormattedMessage
|
||||
id={'contact.page.census.track.feedback.title'}
|
||||
defaultMessage={`Census track feedback`}
|
||||
description={'census track feedback section'}
|
||||
id={'contact.page.census.tract.feedback.title'}
|
||||
defaultMessage={`Census tract feedback`}
|
||||
description={'census tract feedback section'}
|
||||
/>,
|
||||
PARAGRAPH1: <FormattedMessage
|
||||
id={'contact.page.census.track.feedback.para1'}
|
||||
id={'contact.page.census.tract.feedback.para1'}
|
||||
defaultMessage={`
|
||||
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
|
||||
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={{
|
||||
exploreLink: <Link to={'/cejst'}>Explore the tool</Link>,
|
||||
}}
|
||||
/>,
|
||||
PARAGRAPH2: <FormattedMessage
|
||||
id={'contact.page.census.track.feedback.para2'}
|
||||
id={'contact.page.census.tract.feedback.para2'}
|
||||
defaultMessage={`
|
||||
If there are specific data indicators that could be improved or changed, please include that
|
||||
information in the body of the email.
|
||||
`}
|
||||
description={'census track feedback section'}
|
||||
description={'census tract feedback section'}
|
||||
/>,
|
||||
PARAGRAPH3: <FormattedMessage
|
||||
id={'contact.page.census.track.feedback.para1'}
|
||||
id={'contact.page.census.tract.feedback.para1'}
|
||||
defaultMessage={`
|
||||
In addition, you can provide feedback on the tool via this {improvementSurvey}.
|
||||
`}
|
||||
description={'census track feedback section'}
|
||||
description={'census tract feedback section'}
|
||||
values={{
|
||||
improvementSurvey: <LinkTypeWrapper
|
||||
linkText={'survey'}
|
||||
|
|
|
@ -304,7 +304,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis
|
|||
.
|
||||
</p>
|
||||
<h3>
|
||||
Census track feedback
|
||||
Census tract feedback
|
||||
</h3>
|
||||
<p>
|
||||
|
||||
|
|
|
@ -41,10 +41,10 @@ const ContactPage = ({location}: IContactPageProps) => {
|
|||
/>,
|
||||
}}/>
|
||||
</p>
|
||||
<h3>{CONTACT_COPY.CENSUS_TRACK_FEEDBACK.TITLE}</h3>
|
||||
<p>{CONTACT_COPY.CENSUS_TRACK_FEEDBACK.PARAGRAPH1}</p>
|
||||
<p>{CONTACT_COPY.CENSUS_TRACK_FEEDBACK.PARAGRAPH2}</p>
|
||||
<p>{CONTACT_COPY.CENSUS_TRACK_FEEDBACK.PARAGRAPH3}</p>
|
||||
<h3>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.TITLE}</h3>
|
||||
<p>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.PARAGRAPH1}</p>
|
||||
<p>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.PARAGRAPH2}</p>
|
||||
<p>{CONTACT_COPY.CENSUS_TRACT_FEEDBACK.PARAGRAPH3}</p>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</J40MainGridContainer>
|
||||
|
|
Loading…
Add table
Reference in a new issue