react
react copied to clipboard
[Bug]: useNFT Hook on ERC1155 Token returns an owner field with empty string
useNFT on an ERC1155 token returns an owner field with the value of an empty string
It doesn't make sense for an owner field to be returned for an ERC1155 token as there can be multiple owners per token ID.
Example code to reproduce:
const { data: nft, isLoading: loadingNft } = useNFT(editionDrop, 0);