Skip to content

Commit 374aa05

Browse files
committed
fix: type error
1 parent ba2f108 commit 374aa05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/ducks/bridge/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ const fetchTokenExchangeRates = async (
8282
) => {
8383
if (chainId === MultichainNetworks.SOLANA) {
8484
const queryParams = new URLSearchParams({
85-
assetIds: tokenAddresses,
86-
includeMarketData: true,
85+
assetIds: tokenAddresses.join(','),
86+
includeMarketData: 'true',
8787
vsCurrency: currency,
8888
});
8989
const url = `https://price.api.cx.metamask.io/v3/spot-prices?${queryParams}`;

0 commit comments

Comments
 (0)