From f53ce586d3dc2808412a35b478d70ef97a6d2994 Mon Sep 17 00:00:00 2001 From: Alan Donoso Naumczuk Date: Tue, 24 Dec 2024 11:39:21 -0300 Subject: [PATCH] fix: Comment and duplicated import Co-authored-by: intls --- contracts/actions/post/collect/LensCollectedPost.sol | 2 +- contracts/actions/post/collect/SimpleCollectAction.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/actions/post/collect/LensCollectedPost.sol b/contracts/actions/post/collect/LensCollectedPost.sol index d4c6d8ee..84d9930d 100644 --- a/contracts/actions/post/collect/LensCollectedPost.sol +++ b/contracts/actions/post/collect/LensCollectedPost.sol @@ -24,7 +24,7 @@ contract LensCollectedPost is LensERC721, IERC7572 { string internal _contractURI; address internal immutable _feed; uint256 internal immutable _postId; - bool internal immutable _isImmutable; // TODO:"" This can be replaced with bytes(_contentURISnapshot).length + bool internal immutable _isImmutable; // TODO: This can be replaced with bytes(_contentURISnapshot).length address internal immutable _collectAction; constructor( diff --git a/contracts/actions/post/collect/SimpleCollectAction.sol b/contracts/actions/post/collect/SimpleCollectAction.sol index 5c68cd04..3f69c15a 100644 --- a/contracts/actions/post/collect/SimpleCollectAction.sol +++ b/contracts/actions/post/collect/SimpleCollectAction.sol @@ -2,7 +2,7 @@ // Copyright (C) 2024 Lens Labs. All Rights Reserved. pragma solidity ^0.8.0; -import {ISimpleCollectAction, CollectActionData, CollectActionData} from "./ISimpleCollectAction.sol"; +import {ISimpleCollectAction, CollectActionData} from "./ISimpleCollectAction.sol"; import {IFeed} from "./../../../core/interfaces/IFeed.sol"; import {IGraph} from "./../../../core/interfaces/IGraph.sol";