diff --git a/screen/transactions/TransactionDetails.tsx b/screen/transactions/TransactionDetails.tsx index 1dcca5d01..7e7f2a6b6 100644 --- a/screen/transactions/TransactionDetails.tsx +++ b/screen/transactions/TransactionDetails.tsx @@ -311,20 +311,9 @@ const TransactionDetails = () => { {loc.transactions.txid} - Clipboard.setString(tx.hash)} - > - {tx.hash} - + + {tx.hash} + )} @@ -332,20 +321,9 @@ const TransactionDetails = () => { {tx.timestamp && ( <> {loc.transactions.details_received} - Clipboard.setString(dayjs(tx.timestamp * 1000).format('LLL'))} - > - {dayjs(tx.timestamp * 1000).format('LLL')} - + + {dayjs(tx.timestamp * 1000).format('LLL')} + )} @@ -353,20 +331,9 @@ const TransactionDetails = () => { {tx.inputs && ( <> {loc.transactions.details_inputs} - Clipboard.setString(String(tx.inputs.length))} - > - {tx.inputs.length} - + + {tx.inputs.length} + )} @@ -374,20 +341,9 @@ const TransactionDetails = () => { {tx.outputs?.length > 0 && ( <> {loc.transactions.details_outputs} - Clipboard.setString(String(tx.outputs.length))} - > - {tx.outputs.length} - + + {tx.outputs.length} + )}