Skip to content

Commit 39636c9

Browse files
authored
Merge pull request #726 from reservoirprotocol/ted/fe-7801-cant-pick-solana-usdc-from-all-chains
Fix bug with selecting token from trending tokens list
2 parents 34c3788 + cfad35b commit 39636c9

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.changeset/every-humans-yell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@reservoir0x/relay-kit-ui': patch
3+
---
4+
5+
Fix bug with selecting token from trending tokens list

packages/ui/src/components/common/TokenSelector/TokenSelector.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,8 @@ const TokenSelector: FC<TokenSelectorProps> = ({
539539
const address = addressParts.join(':')
540540
const allTokens = [
541541
...sortedUserTokens,
542-
...sortedCombinedTokens
542+
...sortedCombinedTokens,
543+
...sortedTrendingTokens
543544
]
544545

545546
const selectedToken = allTokens.find(

0 commit comments

Comments
 (0)