Skip to content

Commit b6eba76

Browse files
authored
quick_workaround (#2770)
1 parent 2b60886 commit b6eba76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

centrifuge-app/src/components/Portfolio/TransferTokensDrawer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function TransferTokensDrawerInner({ onClose, isOpen }: TransferTokensProps) {
8181
const [poolId, trancheId] = transferKey.split('.')
8282
return tokens?.find((token) => token.poolId === poolId && token.trancheId === trancheId)
8383
} else {
84-
return tokens?.find((token) => token.currency.symbol === transferKey)
84+
return tokens?.find((token) => token.currency.symbol === transferKey && token.currency.key === 'Native')
8585
}
8686
}
8787

0 commit comments

Comments
 (0)