Skip to content

Commit

Permalink
Merge branch 'pending-tx-list-of-address' of https://github.com/magic…
Browse files Browse the repository at this point in the history
…kbase/ckb-explorer-frontend into pending-tx-list-of-address
  • Loading branch information
Keith-CY committed Dec 14, 2023
2 parents d56acfb + abcdef8 commit 880a912
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 @@ -85,7 +85,7 @@ export const Address = () => {
? // FIXME: this type convertion could be removed once the type declaration of Transaction is fixed

Check warning on line 85 in src/pages/Address/index.tsx

View workflow job for this annotation

GitHub Actions / Check spelling

"convertion" should be "conversion".

Check warning on line 85 in src/pages/Address/index.tsx

View workflow job for this annotation

GitHub Actions / Check spelling

"convertion" should be "conversion".
Number(addressInfoQuery.data.transactionsCount) ?? '-'
: '-',
pending: pendingTransactionCountQuery.isFetched ? pendingTransactionCountQuery.data ?? '-' : '-',
pending: pendingTransactionCountQuery.data ?? '-',
}

const newAddr = useNewAddr(address)
Expand Down

0 comments on commit 880a912

Please sign in to comment.