diff --git a/apps/wallet-mobile/src/features/ReviewTx/common/hooks/useFormattedTx.tsx b/apps/wallet-mobile/src/features/ReviewTx/common/hooks/useFormattedTx.tsx index 5773e15efb..bbc5165336 100644 --- a/apps/wallet-mobile/src/features/ReviewTx/common/hooks/useFormattedTx.tsx +++ b/apps/wallet-mobile/src/features/ReviewTx/common/hooks/useFormattedTx.tsx @@ -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, } })