@@ -27,13 +27,15 @@ const makeInformationItem = (
2727 tooltipText ?: string
2828 link ?: string
2929 copy ?: string
30+ verified ?: boolean
3031 } ,
3132) : ProfileItem => ( {
3233 title,
3334 value,
3435 tooltipText : opts ?. tooltipText ,
3536 link : opts ?. link ,
3637 copy : opts ?. copy ,
38+ verified : opts ?. verified ,
3739} )
3840
3941export const OverallBlock = ( {
@@ -72,27 +74,33 @@ export const OverallBlock = ({
7274 const normalizedDefaults = defaults !== undefined ? String ( defaults ) : "0"
7375
7476 const profileInfo : ProfileItem [ ] = [
75- makeInformationItem ( t ( "borrowerProfile.profile.overallInfo.name" ) , name ) ,
77+ makeInformationItem ( t ( "borrowerProfile.profile.overallInfo.name" ) , name , {
78+ verified : true ,
79+ } ) ,
7680 makeInformationItem ( t ( "borrowerProfile.profile.overallInfo.alias" ) , alias ) ,
7781 makeInformationItem (
7882 t ( "borrowerProfile.profile.overallInfo.address" ) ,
7983 address ? trimAddress ( address ) : undefined ,
8084 {
8185 link : address ? getAddressUrl ( address ) : undefined ,
8286 copy : address ,
87+ verified : true ,
8388 } ,
8489 ) ,
8590 makeInformationItem (
8691 t ( "borrowerProfile.profile.overallInfo.headquarters" ) ,
8792 jurisdictionText ,
93+ { verified : true } ,
8894 ) ,
8995 makeInformationItem (
9096 t ( "borrowerProfile.profile.overallInfo.entityKind" ) ,
9197 entityKindText ,
98+ { verified : true } ,
9299 ) ,
93100 makeInformationItem (
94101 t ( "borrowerProfile.profile.overallInfo.founded" ) ,
95102 founded ,
103+ { verified : true } ,
96104 ) ,
97105 makeInformationItem (
98106 t ( "borrowerProfile.profile.overallInfo.markets" ) ,
@@ -138,6 +146,7 @@ export const OverallBlock = ({
138146 tooltipText = { item . tooltipText }
139147 link = { item . link }
140148 copy = { item . copy }
149+ verified = { item . verified }
141150 />
142151
143152 { index < existingData . length - 1 && (
@@ -165,6 +174,7 @@ export const OverallBlock = ({
165174 tooltipText = { item . tooltipText }
166175 link = { item . link }
167176 copy = { item . copy }
177+ verified = { item . verified }
168178 />
169179 < Divider sx = { InfoDivider } />
170180 </ Box >
@@ -180,6 +190,7 @@ export const OverallBlock = ({
180190 tooltipText = { item . tooltipText }
181191 link = { item . link }
182192 copy = { item . copy }
193+ verified = { item . verified }
183194 />
184195 < Divider sx = { InfoDivider } />
185196 </ Box >
0 commit comments