Skip to content

Commit

Permalink
chore: 불필요한 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyxxn committed Dec 1, 2024
1 parent 94ff751 commit d17063f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public struct LocalBookCoverRepository: BookCoverRepository {
}
}

public func updateBookCover(id: UUID, with bookCover: BookCover) async -> Result<Void, MHCore.MHDataError> {
public func updateBookCover(id: UUID, with bookCover: BookCover) async -> Result<Void, MHDataError> {
let bookCoverDTO = BookCoverDTO(
id: bookCover.id,
order: bookCover.order,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ final class BookCollectionViewCell: UICollectionViewCell {

bookCoverView.resetProperties()
likeButton.imageView?.image = nil
likeButton.removeTarget(nil, action: nil, for: .allEvents)
}

// MARK: - Configuration
Expand Down

0 comments on commit d17063f

Please sign in to comment.