Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/feat/#24-PostMeessa…
Browse files Browse the repository at this point in the history
…ge-PostInventory(received)'
  • Loading branch information
jife-archive committed Feb 1, 2025
2 parents a73a5ac + 9fe82fd commit d616187
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,10 @@ final class MessageCollectionViewCell: UICollectionViewCell {
moreButton.isHidden = true
xMarkButton.isHidden = false
xMarkButton.rx.tap
.bind { [weak self] in
self?.onDeleteButtonTap?()
}
.bind(with: self) { owner in
owner.onDeleteButtonTap?()
}
.disposed(by: disposeBag)
.disposed(by: disposeBag)
}
}
Expand Down

0 comments on commit d616187

Please sign in to comment.