@@ -32,8 +32,8 @@ export const AccordionReceipt: React.FC<AccordionReceiptProps> = ({ contract, in
32
32
< i className = { `fas ${ expanded ? 'fa-angle-down' : 'fa-angle-right' } text-secondary` } > </ i >
33
33
</ button >
34
34
35
- < div className = "small w-100 text-uppercase overflow-hidden text-break text- nowrap" >
36
- < CustomTooltip placement = "top " tooltipClasses = "text-nowrap " tooltipText = { `Contract: ${ contract . contractName } , Address: ${ contract . address } , Chain: ${ chainName } , Proxy: ${ contract . proxyAddress } ` } >
35
+ < div className = "small w-100 text-uppercase overflow-hidden text-nowrap" >
36
+ < CustomTooltip placement = "bottom " tooltipClasses = " text-break " tooltipText = { `Contract: ${ contract . contractName } , Address: ${ contract . address } , Chain: ${ chainName } , Proxy: ${ contract . proxyAddress } ` } >
37
37
< span >
38
38
{ contract . contractName } at { shortenAddress ( contract . address ) } { contract . proxyAddress ? 'with proxy' : '' }
39
39
</ span >
@@ -68,7 +68,7 @@ export const AccordionReceipt: React.FC<AccordionReceiptProps> = ({ contract, in
68
68
< >
69
69
< div className = "mt-3" >
70
70
< span className = "font-weight-bold" > Proxy Address: </ span >
71
- < CustomTooltip placement = "top" tooltipClasses = "text-nowrap " tooltipText = { contract . proxyAddress } >
71
+ < CustomTooltip placement = "top" tooltipClasses = " text-break " tooltipText = { contract . proxyAddress } >
72
72
< span > { shortenAddress ( contract . proxyAddress ) } </ span >
73
73
</ CustomTooltip >
74
74
< CopyToClipboard tip = "Copy" content = { contract . proxyAddress } direction = { 'top' } />
@@ -89,11 +89,11 @@ const ReceiptsBody = ({ receipts }: { receipts: VerificationReceipt[] }) => {
89
89
< ul className = "list-group" >
90
90
{ receipts . map ( ( receipt ) => (
91
91
< li className = "list-group-item" >
92
- < CustomTooltip placement = "top" tooltipText = { `API: ${ receipt . verifierInfo . apiUrl } ` } >
92
+ < CustomTooltip placement = "top" tooltipClasses = " text-break" tooltipText = { `API: ${ receipt . verifierInfo . apiUrl } ` } >
93
93
< span className = "font-weight-bold medium" > { receipt . verifierInfo . name } </ span >
94
94
</ CustomTooltip >
95
95
96
- < CustomTooltip placement = "top" tooltipTextClasses = "text-capitalize" tooltipText = { `Status: ${ receipt . status } ${ receipt . message ? `, Message: ${ receipt . message } ` : '' } ` } >
96
+ < CustomTooltip placement = "top" tooltipClasses = " text-break" tooltipTextClasses = "text-capitalize" tooltipText = { `Status: ${ receipt . status } ${ receipt . message ? `, Message: ${ receipt . message } ` : '' } ` } >
97
97
< span className = "ml-2" > { [ 'verified' , 'partially verified' , 'already verified' ] . includes ( receipt . status ) ? < i className = "fas fa-check" > </ i > : receipt . status === 'fully verified' ? < i className = "fas fa-check-double" > </ i > : receipt . status === 'failed' ? < i className = "fas fa-xmark" > </ i > : [ 'pending' , 'awaiting implementation verification' ] . includes ( receipt . status ) ? < i className = "fas fa-spinner fa-spin" > </ i > : < i className = "fas fa-question" > </ i > } </ span >
98
98
</ CustomTooltip >
99
99
0 commit comments