@@ -7,7 +7,7 @@ import type { ReactNode } from 'react';
77import type { InstitutionDetailsApiType } from 'types/formTypes' ;
88import { formatFederalRegulator } from 'utils/formatting' ;
99import InstitutionDataLabels from '../formHelpers' ;
10- import { DisplayField , FALLBACK_BLANK } from './DisplayField' ;
10+ import { DisplayField , NOT_PROVIDED } from './DisplayField' ;
1111
1212const defaultDescription = (
1313 < >
@@ -45,8 +45,7 @@ export function IdentifyingInformation({
4545 } ,
4646 ) ;
4747
48- const institutionTypeNamesString =
49- institutionTypeNamesArray ?. join ( ', ' ) || FALLBACK_BLANK ;
48+ const institutionTypeNamesString = institutionTypeNamesArray ?. join ( ', ' ) ;
5049
5150 return (
5251 < FormSectionWrapper >
@@ -56,7 +55,7 @@ export function IdentifyingInformation({
5655 < DisplayField
5756 label = { InstitutionDataLabels . tin }
5857 value = { data . tax_id }
59- fallbackValue = { FALLBACK_BLANK }
58+ fallbackValue = { NOT_PROVIDED }
6059 />
6160 < DisplayField label = { InstitutionDataLabels . rssd } value = { data . rssd_id } />
6261 < DisplayField
@@ -73,7 +72,7 @@ export function IdentifyingInformation({
7372 < DisplayField
7473 label = { InstitutionDataLabels . fiType }
7574 value = { institutionTypeNamesString }
76- fallbackValue = { FALLBACK_BLANK }
75+ fallbackValue = { NOT_PROVIDED }
7776 />
7877 </ WellContainer >
7978 </ FormSectionWrapper >
0 commit comments