Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
Fix bridge select
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed Apr 16, 2024
1 parent 31019e1 commit 71870b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/transfer-v2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function Component() {

const [bridge, cross] = useMemo(() => {
const cross = sourceToken.cross.find(
(c) => c.target.network === targetChain.network && c.target.symbol === targetToken.symbol,
(c) => c.target.network === targetChain.network && c.target.symbol === targetToken.symbol && !c.hidden,
);
const bridge = cross
? bridgeFactory({
Expand Down

0 comments on commit 71870b7

Please sign in to comment.