File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/core/src/ui/components/ActivityDetail Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export const RewardsDetails = ({
57
57
< span
58
58
className = { styles . ada }
59
59
data-testid = "rewards-received-detail-ada"
60
- > { `${ rewards . totalAmount } ${ coinSymbol } ` } </ span >
60
+ > { `${ rewards . totalAmount } ${ coinSymbol } ` } </ span > { ' ' }
61
61
< span className = { styles . fiat } data-testid = "rewars-received-detail-fiat" > { `${ amountTransformer (
62
62
rewards . totalAmount
63
63
) } `} </ span >
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ export const TransactionDetails = ({
250
250
< div className = { styles . title } > { label } </ div >
251
251
< div className = { styles . detail } >
252
252
< div className = { styles . amount } >
253
- < span className = { styles . ada } > { `${ value } ${ coinSymbol } ` } </ span >
253
+ < span className = { styles . ada } > { `${ value } ${ coinSymbol } ` } </ span > { ' ' }
254
254
< span className = { styles . fiat } > { amountTransformer ( value ) } </ span >
255
255
</ div >
256
256
</ div >
@@ -337,7 +337,7 @@ export const TransactionDetails = ({
337
337
< span
338
338
className = { styles . ada }
339
339
data-testid = "tx-sent-detail-ada"
340
- > { `${ summary . amount } ${ coinSymbol } ` } </ span >
340
+ > { `${ summary . amount } ${ coinSymbol } ` } </ span > { ' ' }
341
341
< span className = { styles . fiat } data-testid = "tx-sent-detail-fiat" > { `${ amountTransformer (
342
342
summary . amount
343
343
) } `} </ span >
You can’t perform that action at this time.
0 commit comments