diff --git a/src/pages/AddressPage/tabs/inventory/Inventory.tsx b/src/pages/AddressPage/tabs/inventory/Inventory.tsx index ced0932..6c6afef 100644 --- a/src/pages/AddressPage/tabs/inventory/Inventory.tsx +++ b/src/pages/AddressPage/tabs/inventory/Inventory.tsx @@ -49,7 +49,7 @@ export function Inventory(props: IInventoryProps) { const { ownerAddress = '', tokenID, meta } = item const name = meta && meta.name ? meta.name.toLowerCase() : '' - return ownerAddress.toLowerCase().includes(value) + return (ownerAddress || '').toLowerCase().includes(value) || tokenID.toLowerCase().includes(value) || name.includes(value) })