diff --git a/src/manager/Manager.sol b/src/manager/Manager.sol index a178b16..83abd61 100644 --- a/src/manager/Manager.sol +++ b/src/manager/Manager.sol @@ -127,7 +127,11 @@ contract Manager is IManager, VersionedContract, UUPS, Ownable, ManagerStorageV1 /// @notice Set a new metadata renderer /// @param _newRendererImpl new renderer address to use /// @param _setupRenderer data to setup new renderer with - function setMetadataRenderer(address _token, address _newRendererImpl, bytes memory _setupRenderer) external returns (address metadata) { + function setMetadataRenderer( + address _token, + address _newRendererImpl, + bytes memory _setupRenderer + ) external returns (address metadata) { if (msg.sender != IOwnable(_token).owner()) revert ONLY_TOKEN_OWNER(); metadata = address(new ERC1967Proxy(_newRendererImpl, "")); diff --git a/src/metadata/property/interfaces/IPropertyMetadata.sol b/src/metadata/property/interfaces/IPropertyMetadata.sol index 44cac46..d4b47de 100644 --- a/src/metadata/property/interfaces/IPropertyMetadata.sol +++ b/src/metadata/property/interfaces/IPropertyMetadata.sol @@ -71,7 +71,11 @@ interface IPropertyMetadata is IBaseMetadata, PropertyMetadataTypesV1, PropertyM /// @param names The names of the properties to add /// @param items The items to add to each property /// @param ipfsGroup The IPFS base URI and extension - function addProperties(string[] calldata names, ItemParam[] calldata items, IPFSGroup calldata ipfsGroup) external; + function addProperties( + string[] calldata names, + ItemParam[] calldata items, + IPFSGroup calldata ipfsGroup + ) external; /// @notice The number of properties function propertiesCount() external view returns (uint256);