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

[Content] Update your financial profile, View your financial profile #1019

Open
wants to merge 6 commits into
base: 943-disable-ufp-rssd-id
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 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
2 changes: 1 addition & 1 deletion src/pages/Filing/UpdateFinancialProfile/UfpForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default function UFPForm({
<FormHeaderWrapper>
<TextIntroduction
heading='Update your financial institution profile'
subheading='This profile reflects the most current data available to the CFPB for your financial institution. We pull data from sources including GLEIF (Global Legal Entity Identifier Foundation), the National Information Center (NIC), and direct requests to our support staff. '
subheading='This profile reflects the most current data available to the CFPB for your financial institution. We pull data from sources including the Global Legal Entity Identifier Foundation (GLEIF), the National Information Center (NIC), and direct requests to our support staff.'
description={
<Paragraph>
Only fill out the form fields you wish to update. Requested
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,10 @@ function UpdateIdentifyingInformation({
<FormSectionWrapper>
<SectionIntro heading='Update your financial institution identifying information'>
If your financial institution does not have an RSSD ID, provide your TIN
below. If your financial institution has an RSSD ID number and “Not
applicable” is shown below, contact your primary federal regulator,
state regulator, or reserve bank to link your LEI to your RSSD ID in
NIC. Once updated in NIC, we will populate the data in our system
accordingly.
below. If your institution has an RSSD ID but quot;Not applicablequot;
shindigira marked this conversation as resolved.
Show resolved Hide resolved
is shown, contact your primary federal regulator, state regulator, or
reserve bank to link your LEI to your RSSD ID. Once updated in NIC, we
will reflect the data in our system.
</SectionIntro>
<WellContainer className='u-mt30'>
{/* <InputEntry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ import type { ReactNode } from 'react';
import type { InstitutionDetailsApiType } from 'types/formTypes';
import { formatFederalRegulator, valueOrNotavailable } from 'utils/formatting';
import InstitutionDataLabels from '../formHelpers';
import { DisplayField } from './DisplayField';
import { DisplayField, NOT_APPLICABLE } from './DisplayField';

const defaultDescription = (
<>
If your financial institution has an RSSD ID, and you wish to update the
following information, visit the <Links.FederalReserveBoard />. If your
financial institution does not have an RSSD ID and you wish to make an
update, submit a request to <Links.UpdateInstitutionProfile />.
If your financial institution does not have an RSSD ID and you wish to
provide your TIN, <Links.UpdateInstitutionProfile isCallToAction={false} />.
If your institution has an RSSD ID but &quot;Not applicable&quot; is shown,
contact your primary federal regulator, state regulator, or reserve bank to
link your LEI to your RSSD ID. Once updated in NIC, we will reflect the data
in our system.
</>
);

Expand Down Expand Up @@ -55,7 +57,11 @@ export function IdentifyingInformation({

<WellContainer className='u-mt30'>
<DisplayField label={InstitutionDataLabels.tin} value={data.tax_id} />
<DisplayField label={InstitutionDataLabels.rssd} value={data.rssd_id} />
<DisplayField
label={InstitutionDataLabels.rssd}
value={data.rssd_id}
fallbackValue={NOT_APPLICABLE}
/>
<DisplayField
label={InstitutionDataLabels.regName}
value={formatFederalRegulator(data)}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Filing/ViewInstitutionProfile/PageIntro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function PageIntro(): JSX.Element {
return (
<TextIntroduction
heading='View your financial institution profile'
subheading='This profile reflects the most current data available to the CFPB for your financial institution. We pull data from sources including GLEIF (Global Legal Entity Identifier Foundation), the National Information Center (NIC), and direct requests to our support staff.'
subheading='This profile reflects the most current data available to the CFPB for your financial institution. We pull data from sources including Global Legal Entity Identifier Foundation (GLEIF), the National Information Center (NIC), and direct requests to our support staff.'
description={
<Paragraph>
Most updates to financial institution profile details must be handled
Expand Down