diff --git a/contracts/LensHub.sol b/contracts/LensHub.sol index 38cba9e..b0e70f3 100644 --- a/contracts/LensHub.sol +++ b/contracts/LensHub.sol @@ -385,12 +385,11 @@ contract LensHub is uint256 unfollowerProfileId, uint256[] calldata idsOfProfilesToUnfollow ) external override whenNotPaused onlyProfileOwnerOrDelegatedExecutor(msg.sender, unfollowerProfileId) { - return - FollowLib.unfollow({ - unfollowerProfileId: unfollowerProfileId, - idsOfProfilesToUnfollow: idsOfProfilesToUnfollow, - transactionExecutor: msg.sender - }); + FollowLib.unfollow({ + unfollowerProfileId: unfollowerProfileId, + idsOfProfilesToUnfollow: idsOfProfilesToUnfollow, + transactionExecutor: msg.sender + }); } /// @inheritdoc ILensProtocol @@ -401,12 +400,11 @@ contract LensHub is ) external override whenNotPaused onlyProfileOwnerOrDelegatedExecutor(signature.signer, unfollowerProfileId) { MetaTxLib.validateUnfollowSignature(signature, unfollowerProfileId, idsOfProfilesToUnfollow); - return - FollowLib.unfollow({ - unfollowerProfileId: unfollowerProfileId, - idsOfProfilesToUnfollow: idsOfProfilesToUnfollow, - transactionExecutor: signature.signer - }); + FollowLib.unfollow({ + unfollowerProfileId: unfollowerProfileId, + idsOfProfilesToUnfollow: idsOfProfilesToUnfollow, + transactionExecutor: signature.signer + }); } /// @inheritdoc ILensProtocol