Skip to content

Commit

Permalink
Update apps/wallet-mobile/src/features/ReviewTx/common/hooks/useForma…
Browse files Browse the repository at this point in the history
…ttedTx.tsx

Signed-off-by: banklesss <[email protected]>
  • Loading branch information
banklesss authored Sep 22, 2024
1 parent 6f48aa8 commit 4b177f5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ const formatInputs = async (
.map((a) => {
const tokenInfo = portfolioTokenInfos.tokenInfos?.get(a.assetId as Portfolio.Token.Id)
if (!tokenInfo) return null
const quantity = asQuantity(a.amount)

return {
name: infoExtractName(tokenInfo),
label: formatTokenWithText(quantity, tokenInfo),
quantity,
quantity: asQuantity(a.amount),
isPrimary: false,
}
})
Expand Down

0 comments on commit 4b177f5

Please sign in to comment.