Skip to content

Commit

Permalink
fix: Update copy for InstitutionProfile page (#195)
Browse files Browse the repository at this point in the history
Language updates
- Financial institution
  - Email domain(s)
  - Section intro
  - Spell out `Legal Entity Identifier (LEI)` on first use
- Affiliate information => Section intro
- Identifying information
- Spell out `Research, Statistics, Supervision, Discount (RSSD) ID` on first use
  • Loading branch information
meissadia authored Jan 30, 2024
1 parent 022ac3a commit a704ad3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
7 changes: 4 additions & 3 deletions src/pages/Filing/InstitutionDetails/AffiliateInformation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ export function AffiliateInformation({
Affiliate information
</Heading>
<Paragraph>
To request changes to an affiliate&apos;s LEI, visit <Links.GLIEF />. To
request changes an affiliate&apos;s RSSD ID, visit <Links.NIC />. If you
wish to provide your affiliate&apos;s name, please complete the&nbsp;
To request changes to an LEI based affiliate, visit <Links.GLIEF />. To
request changes to an RSSD ID based affiliate, visit <Links.NIC />. If
you wish to provide only your affiliate&apos;s name, where no LEI or
RSSD ID exists, please complete the&nbsp;
<Links.UpdateInstitutionProfile /> form.
</Paragraph>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Links from 'components/CommonLinks';
import { Heading, Paragraph, WellContainer } from 'design-system-react';
import { Heading, Link, Paragraph, WellContainer } from 'design-system-react';
import type { ReactElement } from 'react';
import { sblHelpLink } from 'utils/common';
import { DisplayField } from './DisplayField';
import type {
DomainType as Domain,
Expand Down Expand Up @@ -33,9 +34,9 @@ export function FinancialInstitutionDetails({
Financial institution details
</Heading>
<Paragraph>
To make changes to your financial institution details data, visit{' '}
<Links.GLIEF />. Email domain data is pulled from our financial
institutions database.
To make a change to the email domains for your financial institution,
please <Link href={sblHelpLink}>contact our support staff</Link>. To
make a change to any other data in this section, visit <Links.GLIEF />.
</Paragraph>

<WellContainer className='u-mt30'>
Expand All @@ -52,14 +53,14 @@ export function FinancialInstitutionDetails({
</>
}
/>
<DisplayField label='LEI' value={data.lei} />
<DisplayField label='Legal Entity Identifier (LEI)' value={data.lei} />
<DisplayField
label='LEI status'
value={
<span className='capitalize'>{data.is_active?.toString()}</span>
}
/>
<DisplayField label='Email domain' value={domainString} />
<DisplayField label='Email domain(s)' value={domainString} />
</WellContainer>
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ export function IdentifyingInformation({
label='Federal Taxpayer Identification Number (TIN)'
value={data.tax_id}
/>
<DisplayField label='RSSD ID' value={data.rssd_id} />
<DisplayField
label='Research, Statistics, Supervision, Discount (RSSD) ID'
value={data.rssd_id}
/>
<DisplayField
label='Federal prudential regulator'
value={`${data.primary_federal_regulator?.name} (${data.primary_federal_regulator?.id})`}
Expand Down

0 comments on commit a704ad3

Please sign in to comment.