@@ -20,7 +20,7 @@ const StyledCopiable = styled(Copiable)`
20
20
gap: 6px;
21
21
` ;
22
22
23
- const StyledLabel = styled . span `
23
+ const StyledSpan = styled . span `
24
24
color: ${ ( { theme } ) => theme . primaryBlue } ;
25
25
` ;
26
26
@@ -61,11 +61,11 @@ const Description: React.FC<IDescription> = ({
61
61
By Paying { sendingQuantity } { " " }
62
62
< InlineBlockSpan > { assetSymbol ? assetSymbol : < StyledSkeleton width = { 30 } /> } </ InlineBlockSpan > , address{ " " }
63
63
< StyledCopiable copiableContent = { buyerAddress ?? "" } info = "Copy Buyer Address" >
64
- < StyledLabel > { displayBuyerAddress } </ StyledLabel >
64
+ < StyledSpan > { displayBuyerAddress } </ StyledSpan >
65
65
</ StyledCopiable > { " " }
66
66
should receive "{ deliverableText } " from address{ " " }
67
67
< StyledCopiable copiableContent = { sellerAddress ?? "" } info = "Copy Seller Address" >
68
- < StyledLabel > { displaySellerAddress } </ StyledLabel >
68
+ < StyledSpan > { displaySellerAddress } </ StyledSpan >
69
69
</ StyledCopiable > { " " }
70
70
before the delivery deadline { new Date ( deadline ) . toString ( ) } .
71
71
</ >
@@ -75,11 +75,11 @@ const Description: React.FC<IDescription> = ({
75
75
< >
76
76
By Paying { sendingQuantity } { sendingToken } , [Blockchain] address{ " " }
77
77
< StyledCopiable copiableContent = { buyerAddress ?? "" } info = "Copy Buyer Address" >
78
- < StyledLabel > { displayBuyerAddress } </ StyledLabel >
78
+ < StyledSpan > { displayBuyerAddress } </ StyledSpan >
79
79
</ StyledCopiable > { " " }
80
80
should receive { receivingQuantity } { receivingToken } at the [Blockchain] address{ " " }
81
81
< StyledCopiable copiableContent = { sellerAddress ?? "" } info = "Copy Seller Address" >
82
- < StyledLabel > { displaySellerAddress } </ StyledLabel >
82
+ < StyledSpan > { displaySellerAddress } </ StyledSpan >
83
83
</ StyledCopiable > { " " }
84
84
from [Blockchain] address TODO before the delivery deadline { new Date ( deadline ) . toString ( ) } .
85
85
</ >
0 commit comments