Skip to content

Commit 8f46299

Browse files
fix: gas token picker (#2306)
1 parent 1511d89 commit 8f46299

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/namadillo/src/App/Common/GasFeeModal.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,10 @@ export const GasFeeModal = ({
128128
minDenomAmount: balance.minDenomAmount,
129129
token: balance.address,
130130
}))
131-
: transparentAmount.data;
131+
: transparentAmount.data?.map((balance) => ({
132+
minDenomAmount: balance.minDenomAmount,
133+
token: balance.token.address,
134+
}));
132135

133136
return new BigNumber(
134137
balances?.find((token) => token.token === tokenAddres)?.minDenomAmount ||

0 commit comments

Comments
 (0)