- { 'token_id' in total && total.token_id !== null && }
+ { total && 'token_id' in total && total.token_id !== null && }
|
{ showTxInfo && txHash && (
diff --git a/ui/token/TokenTransfer/TokenTransferListItem.tsx b/ui/token/TokenTransfer/TokenTransferListItem.tsx
index 26cb384bee..309bf96646 100644
--- a/ui/token/TokenTransfer/TokenTransferListItem.tsx
+++ b/ui/token/TokenTransfer/TokenTransferListItem.tsx
@@ -89,7 +89,7 @@ const TokenTransferListItem = ({
) }
) }
- { 'token_id' in total && (NFT_TOKEN_TYPE_IDS.includes(token.type)) && total.token_id !== null && (
+ { total && 'token_id' in total && (NFT_TOKEN_TYPE_IDS.includes(token.type)) && total.token_id !== null && (
{ (NFT_TOKEN_TYPE_IDS.includes(token.type)) && (
- { 'token_id' in total && total.token_id !== null ? (
+ { total && 'token_id' in total && total.token_id !== null ? (
{
- { 'token_id' in item.total && (NFT_TOKEN_TYPE_IDS.includes(item.token.type)) && item.total.token_id !== null && (
+ { item.total && 'token_id' in item.total && (NFT_TOKEN_TYPE_IDS.includes(item.token.type)) && item.total.token_id !== null && (
<>
Token ID
diff --git a/ui/tokenTransfers/TokenTransfersTableItem.tsx b/ui/tokenTransfers/TokenTransfersTableItem.tsx
index b7aaaf1b41..34cb214d2e 100644
--- a/ui/tokenTransfers/TokenTransfersTableItem.tsx
+++ b/ui/tokenTransfers/TokenTransfersTableItem.tsx
@@ -62,7 +62,7 @@ const TokenTransferTableItem = ({ item, isLoading }: Props) => {
/>
|
- { 'token_id' in item.total && (NFT_TOKEN_TYPE_IDS.includes(item.token.type)) && item.total.token_id !== null ? (
+ { item.total && 'token_id' in item.total && (NFT_TOKEN_TYPE_IDS.includes(item.token.type)) && item.total.token_id !== null ? (
| |