I'm currently using the below code to get all the functionality of the preset and the _setTokenURI function from ERC721URIStorageUpgradeable, but am being asked to override multiple functions (due to conflicts I guess)
Code to reproduce
contract MyNFT is ERC721PresetMinterPauserAutoIdUpgradeable, OwnableUpgradeable, ERC721URIStorageUpgradeable {
....
}
Environment
Using contracts v4.2 and hardhat v2.4.3
Is there a suggested way to override these functions?