fix: Remove wrong override keyword

This commit is contained in:
donosonaumczuk
2024-02-02 19:09:31 -03:00
parent 639529d6ec
commit bf00097261

View File

@@ -199,7 +199,7 @@ abstract contract LensProfiles is LensBaseERC721, ERC2981CollectionRoyalties, IL
address from,
address to,
uint256 tokenId
) internal override whenNotPaused {
) internal whenNotPaused {
if (from != address(0) && _hasTokenGuardianEnabled(from)) {
// Cannot transfer profile if the guardian is enabled, except at minting time.
revert Errors.GuardianEnabled();