+ {pendingTxns?.count == 0 ? (
+
No pending transactions in this Safe
+ ) : (
+ pendingTxns?.results.map((txn) => (
+
+
+
SafeTxHash
{' '}
+ {txn.safeTxHash.slice(0, 6) + '...' + txn.safeTxHash.slice(-4)}
+
+
+
Nonce
{txn.nonce}
+
+
+
Created
{' '}
+ {formatDate(txn.submissionDate)}
+
+
+
Type
{' '}
+ {txn.data ? 'Contract Call' : 'Send'}
+
+
+ ))
+ )}
+