Commit 8301c589 authored by Jack Short's avatar Jack Short Committed by GitHub

chore: removing token type check from routing (#6536)

parent 59b757dd
......@@ -27,7 +27,7 @@ const buildNftTradeInput = (assets: UpdatedGenieAsset[]): NftTradeInput[] => {
return assets.flatMap((asset) => {
const { id, address, marketplace, priceInfo, tokenId, tokenType } = asset
if (!id || !marketplace || !tokenType) return []
if (!id || !marketplace) return []
const ethAmountInput: TokenAmountInput = {
amount: priceInfo.ETHPrice,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment