diff --git a/src/pages/InventoryDetailsPage/InventoryDetailsPage.tsx b/src/pages/InventoryDetailsPage/InventoryDetailsPage.tsx index 1a207d9..3d8a50b 100644 --- a/src/pages/InventoryDetailsPage/InventoryDetailsPage.tsx +++ b/src/pages/InventoryDetailsPage/InventoryDetailsPage.tsx @@ -294,11 +294,13 @@ export function InventoryDetailsPage() { const [inventory, setInventory] = useState({} as any); const [isLoading, setIsLoading] = useState(false) - const { + let { address = '', tokenID = '', type = '' }: { address: string, tokenID: string, type: string } = useParams(); + address = address.toLowerCase() + tokenID = tokenID.toLowerCase() const token721 = erc721Map[address] const token1155 = erc1155Map[address]