Skip to content

Commit

Permalink
fix: isTokenRegistered call from getTxDetails (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexruzenhack committed May 15, 2024
1 parent c85535e commit 9bb0a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sagas/pushNotification.js
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ export const getTxDetails = async (wallet, txId) => {
name: each.tokenName,
symbol: each.tokenSymbol,
balance: each.balance,
isRegistered: await isTokenRegistered(each.tokenId),
isRegistered: await isTokenRegistered(wallet, each.tokenId),
}))),
});

Expand Down

0 comments on commit 9bb0a19

Please sign in to comment.