Skip to content

Commit

Permalink
fix: nav to swap from tt row (#6347)
Browse files Browse the repository at this point in the history
  • Loading branch information
derHowie authored Dec 18, 2024
1 parent 095c9b2 commit 8049dae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function SwapActionButton({ asset, color: givenColor, inputType, label, weight =
const goToSwap = useCallback(async () => {
const chainsIdByName = useBackendNetworksStore.getState().getChainsIdByName();
const chainsName = useBackendNetworksStore.getState().getChainsName();
const chainId = chainsIdByName[asset.network];
const chainId = asset.chainId || chainsIdByName[asset.network];
const uniqueId = `${asset.address}_${chainId}`;
const userAsset = userAssetsStore.getState().userAssets.get(uniqueId);

Expand Down

0 comments on commit 8049dae

Please sign in to comment.