Skip to content

Commit

Permalink
Fix url creation for stale balance param
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchung committed Sep 7, 2024
1 parent 182ba51 commit 8ce8199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/assets/UserAssetsQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const fetchUserAssetsForChainIds = async ({
let url = `https://addys.p.rainbow.me/v3/${chainIdsString}/${address}/assets?currency=${currency.toLowerCase()}`;

if (staleBalanceParam) {
url += url + staleBalanceParam;
url = url + staleBalanceParam;
}

const response = await rainbowFetch(url, {
Expand Down

0 comments on commit 8ce8199

Please sign in to comment.