Skip to content

Commit

Permalink
Update src/pages/Address/index.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: WhiteMind <[email protected]>
Signed-off-by: Chen Yu <[email protected]>
  • Loading branch information
Keith-CY and WhiteMinds authored Dec 13, 2023
1 parent 7faab8f commit abcdef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Address/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const Address = () => {
addressInfoQuery.isFetched && addressInfoQuery.data
? Number(addressInfoQuery.data.transactionsCount) ?? '-'
: '-',
pending: pendingTransactionCountQuery.isFetched ? pendingTransactionCountQuery.data ?? '-' : '-',
pending: pendingTransactionCountQuery.data ?? '-',
}

const newAddr = useNewAddr(address)
Expand Down

0 comments on commit abcdef8

Please sign in to comment.